mirror of
https://github.com/kurbezz/utility-bot.git
synced 2025-12-06 19:25:36 +01:00
11 lines
178 B
Python
11 lines
178 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Config(BaseSettings):
|
|
BOT_TOKEN: str
|
|
BASE_WEBHOOK_URL: str
|
|
WEBHOOK_SECRET: str
|
|
|
|
|
|
config = Config() # type: ignore
|