Initial commit

This commit is contained in:
Evgeniy L.
2025-03-15 10:10:55 +05:00
commit 1ef9dc18bb
9 changed files with 313 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import os
from dotenv import load_dotenv
if not load_dotenv():
raise FileNotFoundError('.env file does not exist')
TOKEN = os.environ.get('BOT_TOKEN')
if not TOKEN:
raise ValueError("BOT_TOKEN is not set in the environment variables")
DEBUG = os.environ.get('DEBUG', 'False').lower() in ('true', '1', 'yes', 'on')
TEAM_MEMBERS_STR = """
Team:
- Lukyanov E. - @queue_qq
- Serik T. - @tam_serik
- Skripchenko V. - @Sunny_Vls
- Islamberdi A. - @Y191900
"""