Implement Kaizoku provider downloader

This commit is contained in:
Codex
2026-08-09 11:50:46 +02:00
parent 5278eda713
commit 34e3625f87
31 changed files with 19604 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/env python3
"""Aggregated template exports for Kaizoku."""
from config_page import CONFIG_HTML
from queue_page import QUEUE_HTML
from search_page import INDEX_HTML
from template_helpers import PAGE_LINKS, render_page_links, render_sidebar_brand
from watchlist_page import WATCHLIST_HTML
__all__ = [
"CONFIG_HTML",
"INDEX_HTML",
"PAGE_LINKS",
"QUEUE_HTML",
"WATCHLIST_HTML",
"render_page_links",
"render_sidebar_brand",
]