1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
Files
AdministrationItDepartmens/backend/app/bot/config.py
2024-12-28 08:12:44 +06:00

13 lines
315 B
Python

"""Bot-specific configuration"""
from ..config import settings
BOT_TOKEN = settings.bot_token
CHAT_ID = settings.chat_id
# Request status constants
class RequestStatus:
"""Constants for request statuses"""
NEW = "new"
IN_PROGRESS = "in_progress"
COMPLETED = "completed"
CANCELLED = "cancelled"