1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
This commit is contained in:
MoonTestUse1
2024-12-23 22:35:13 +06:00
parent 7e35c2f318
commit ce4fa7beaf
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
from aiogram import Bot, Dispatcher
from app.bot.config import settings
bot = Bot(token=settings.TELEGRAM_BOT_TOKEN)
bot = Bot(token="7677506032:AAHB2QtrxKdgUXLWlE2xXaVxs9V7BPz1fhc")
dp = Dispatcher()
from .handlers import start, status

View File

@@ -2,7 +2,7 @@ from pydantic_settings import BaseSettings
class Settings(BaseSettings):
TELEGRAM_BOT_TOKEN: str = "7677506032:AAHB2QtrxKdgUXLWlE2xXaVxs9V7BPz1fhc"
TELEGRAM_BOT_TOKEN: str = ""
TELEGRAM_CHAT_ID: str = "5057752127"
class Config: