diff --git a/backend/app/bot/config.py b/backend/app/bot/config.py index 070b17a..2b36e8b 100644 --- a/backend/app/bot/config.py +++ b/backend/app/bot/config.py @@ -8,7 +8,7 @@ from pydantic import Field class Settings(BaseSettings): """Bot configuration settings""" bot_token: str = Field("7677506032:AAHduD5EePz3bE23DKlo35KoOp2_9lZuS34", env="TELEGRAM_BOT_TOKEN") - chat_id: str = Field("-1002037023574", env="TELEGRAM_CHAT_ID") + chat_id: str = Field("5057752127", env="TELEGRAM_CHAT_ID") class Config: env_file = ".env"