Bump to v1.2

This commit is contained in:
Dr.Caduceus
2023-11-07 14:54:40 +05:30
committed by GitHub
parent c86e350943
commit 491b6012ec

View File

@@ -1,7 +1,7 @@
from os import environ as env
class Telegram:
API_ID = env.get("TELEGRAM_API_ID", 1234)
API_ID = int(env.get("TELEGRAM_API_ID", 1234))
API_HASH = env.get("TELEGRAM_API_HASH", "xyz")
OWNER_ID = int(env.get("OWNER_ID", 1234567890))
ALLOWED_USER_IDS = env.get("ALLOWED_USER_IDS", "").split()