snapshot current state before gitea sync

This commit is contained in:
2026-02-18 10:50:25 +01:00
commit e367a38065
13 changed files with 243 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from pathlib import Path
from dotenv import load_dotenv
from pydantic_settings import BaseSettings
load_dotenv()
class Settings(BaseSettings):
bot_token: str
downloads_dir: Path = Path("downloads")
settings = Settings()