This commit is contained in:
2026-04-24 20:38:31 +03:00
commit 9138512e2f
8 changed files with 108 additions and 0 deletions

12
settings.py Normal file
View File

@@ -0,0 +1,12 @@
from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
model_config = SettingsConfigDict(env_file='.env', env_file_encoding='utf-8')
telegram_bot_token: str
telegram_chat_id: str
telegram_message_thread_id: int
settings = Settings()