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.
16 lines
550 B
16 lines
550 B
"""Модуль для хранения настроек приложения. |
|
|
|
Естественно все чувствительные данные храняться в переменных |
|
окружения. |
|
|
|
""" |
|
from os import getenv |
|
|
|
DELAY_TIME = int(getenv("GBOT_DELAY_TIME")) |
|
DELAY_TIME_Q = int(getenv("GBOT_DELAY_TIME_Q")) |
|
DELAY_TIME_POST = int(getenv("GBOT_DELAY_TIME_POST")) |
|
CHAT_ID = getenv("GBOT_CHAT_ID") |
|
ADMINS = [106693654, 7063133, 4978608] |
|
API_TOKEN = getenv("TELEGRAM_API_TOKEN") |
|
DB_PATH = getenv("GBOT_DB_PATH") |
|
VERSION = 1.02
|
|
|