This commit is contained in:
Vxrtrauter
2025-10-12 01:07:55 +02:00
3 changed files with 15 additions and 3 deletions
+2 -1
View File
@@ -8,6 +8,7 @@ class AppState:
post_titles: List[str]
post_urls: List[str]
post_author: List[str]
downloads: List[str]
debug: bool = False
tracker: str = "rutracker"
api_url: str = "https://api.michijackson.xyz"
@@ -18,4 +19,4 @@ class AppState:
aria2p: Any = None
aria2_threads: int = 4
state = AppState(posts=[], post_titles=[], post_urls=[], post_author=[], download_path="")
state = AppState(posts=[], post_titles=[], post_urls=[], post_author=[], downloads=[], download_path="")