forked from VJBots/VJ-Auto-Approval-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigs.py
21 lines (16 loc) · 806 Bytes
/
configs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Don't Remove Credit @VJ_Botz
# Subscribe YouTube Channel For Amazing Bot @Tech_VJ
# Ask Doubt on telegram @KingVJ01
from os import path, getenv
class Config:
API_ID = int(getenv("API_ID", "25255983"))
API_HASH = getenv("API_HASH", "5d3616ef09b67e8cf45a96a11fa57b22")
BOT_TOKEN = getenv("BOT_TOKEN", "6772654586:AAGG1HqLwow5OxiHEAl3RraQLX2Fx5V6Xqg")
FSUB = getenv("FSUB", "Telugumacha_updates")
CHID = int(getenv("CHID", "-1002080428958"))
SUDO = list(map(int, getenv("SUDO", "5136811766").split()))
MONGO_URI = getenv("MONGO_URI", "mongodb+srv://mecesa9366:[email protected]/?retryWrites=true&w=majority")
cfg = Config()
# Don't Remove Credit @VJ_Botz
# Subscribe YouTube Channel For Amazing Bot @Tech_VJ
# Ask Doubt on telegram @KingVJ01