This commit is contained in:
2024-08-10 03:28:13 +02:00
commit c725f18c96
8 changed files with 1545 additions and 0 deletions

10
src/config.py Normal file
View File

@@ -0,0 +1,10 @@
from pydantic_settings import BaseSettings
class Config(BaseSettings):
BOT_TOKEN: str
BASE_WEBHOOK_URL: str
WEBHOOK_SECRET: str
config = Config() # type: ignore