From d45829b4af237b34e6a7590ee96ca08136870adc Mon Sep 17 00:00:00 2001 From: Mroik Date: Fri, 12 Apr 2024 17:02:57 +0200 Subject: Rewrite project --- config.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'config.py') diff --git a/config.py b/config.py index 8466aa3..145b572 100644 --- a/config.py +++ b/config.py @@ -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 = [] -- cgit v1.3