mirror of
https://github.com/ArtzSU/SRSP-bot.git
synced 2026-09-17 03:29:00 +00:00
Initial commit
This commit is contained in:
@@ -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
|
||||
"""
|
||||
Reference in New Issue
Block a user