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-31 02:37:57 +06:00
parent 8e53bb6cb2
commit d5780b2eab
3258 changed files with 1087440 additions and 268 deletions

View File

@@ -1,9 +1,17 @@
"""Bot-specific configuration"""
from ..config import settings
import os
from dotenv import load_dotenv
load_dotenv()
BOT_TOKEN = settings.bot_token
CHAT_ID = settings.chat_id
# Telegram API credentials
API_ID = os.getenv('TELEGRAM_API_ID')
API_HASH = os.getenv('TELEGRAM_API_HASH')
# Request status constants
class RequestStatus:
"""Constants for request statuses"""