mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
13 lines
315 B
Python
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" |