You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
481 B
15 lines
481 B
3 years ago
|
"""Модуль для хранения настроек приложения.
|
||
|
|
||
|
Естественно все чувствительные данные храняться в переменных
|
||
|
окружения.
|
||
|
|
||
|
"""
|
||
|
from os import getenv
|
||
|
|
||
|
DELAY_TIME = int(getenv("GBOT_DELAY_TIME"))
|
||
|
DELAY_TIME_Q = int(getenv("GBOT_DELAY_TIME_Q"))
|
||
|
CHAT_ID = getenv("GBOT_CHAT_ID")
|
||
|
ADMINS = [106693654, 7063133, 4978608]
|
||
|
API_TOKEN = getenv("TELEGRAM_API_TOKEN")
|
||
|
DB_PATH = getenv("GBOT_DB_PATH")
|