Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
from os import path, getenv

class Config:
API_ID = int(getenv("API_ID", ""))
API_HASH = getenv("API_HASH", "")
BOT_TOKEN = getenv("BOT_TOKEN", "")
API_ID = int(getenv("API_ID", "22980378"))
API_HASH = getenv("API_HASH", "b4f6d14f1c852a965bf40d1d74d4368f")
BOT_TOKEN = getenv("BOT_TOKEN", "7658007410:AAEBI0WpFdygVcMEBh5BiIwW3vdusQbiunY")
# Your Force Subscribe Channel Id Below
CHID = int(getenv("CHID", "")) # Make Bot Admin In This Channel
CHID = int(getenv("CHID", "1001673745865")) # Make Bot Admin In This Channel
# Admin Or Owner Id Below
SUDO = list(map(int, getenv("SUDO", "").split()))
MONGO_URI = getenv("MONGO_URI", "")
SUDO = list(map(int, getenv("SUDO", "7135894706").split()))
MONGO_URI = getenv("MONGO_URI", "mongodb+srv://infogoatwork:TFH3tsED9xyGOgp9@cluster0.xvgt3.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0")

cfg = Config()

Expand Down