diff options
| author | Mroik <mroik@delayed.space> | 2024-04-12 17:02:57 +0200 |
|---|---|---|
| committer | Mroik <mroik@delayed.space> | 2024-04-12 17:09:15 +0200 |
| commit | d45829b4af237b34e6a7590ee96ca08136870adc (patch) | |
| tree | ff372ce857273403a93ffc973b8ec46f9ceed01e /config.py | |
| parent | ef1aa7bfa5047b239a3748a4e92c8d8ae6ef8e8a (diff) | |
Rewrite project
Diffstat (limited to 'config.py')
| -rw-r--r-- | config.py | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,9 +1,9 @@ from os import environ -API_ID = environ.get("TELEGRAM_API_ID") -API_HASH = environ.get("TELEGRAM_API_HASH") -GROUP_ID = environ.get("TELEGRAM_GROUP_ID") -WORDLIST = [] # List of words to be notified about -BOT_TOKEN = environ.get("TELEGRAM_BOT_TOKEN") -BOT_ID = environ.get("TELEGRAM_BOT_ID") -USER_ID = environ.get("TELEGRAM_USER_ID") +BOT_TOKEN = environ.get("BOT_TOKEN") +CHANNEL_ID = environ.get("CHANNEL_ID") +USER_ID = environ.get("USER_ID") +API_ID = environ.get("API_ID") +API_HASH = environ.get("API_HASH") +BOTNICK = environ.get("BOTNICK") +WORDLIST = [] |
