deezbot/settings.py
Sphericalkat 894d840e94
Initial commit
Signed-off-by: Sphericalkat <me@kat.bio>
2024-05-25 12:35:14 +05:30

9 lines
244 B
Python

from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
model_config = SettingsConfigDict(env_file=".env", env_file_encoding="utf-8")
bot_token: str = "YOUR_BOT_TOKEN"
log_level: str = "INFO"