snapshot current state before gitea sync
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user