mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-04 01:49:42 +02:00
11 lines
188 B
Python
11 lines
188 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class AppState:
|
|
debug: bool = False
|
|
tracker: str = "rutracker"
|
|
api_url: str = "https://api.michijackson.xyz"
|
|
|
|
|
|
state = AppState() |