Spaces:
Sleeping
Sleeping
Captain Ezio
commited on
Commit
·
04470be
1
Parent(s):
c3be86d
Update vars.py
Browse files- Powers/vars.py +2 -2
Powers/vars.py
CHANGED
@@ -13,7 +13,7 @@ class Config:
|
|
13 |
|
14 |
LOGGER = True
|
15 |
BOT_TOKEN = config("BOT_TOKEN", default=None)
|
16 |
-
|
17 |
API_HASH = config("API_HASH", default=None)
|
18 |
OWNER_ID = int(config("OWNER_ID", default=1344569458))
|
19 |
MESSAGE_DUMP = int(config("MESSAGE_DUMP", default=-100))
|
@@ -40,7 +40,7 @@ class Development:
|
|
40 |
# Fill in these vars if you want to use Traditional method of deploying
|
41 |
LOGGER = True
|
42 |
BOT_TOKEN = "YOUR BOT_TOKEN"
|
43 |
-
|
44 |
API_HASH = "YOUR API HASH" # Your APP_HASH from Telegram
|
45 |
OWNER_ID = 1344569458 # Your telegram user id
|
46 |
MESSAGE_DUMP = -100 # Your Private Group ID for logs
|
|
|
13 |
|
14 |
LOGGER = True
|
15 |
BOT_TOKEN = config("BOT_TOKEN", default=None)
|
16 |
+
API_ID = int(config("API_ID", default=None))
|
17 |
API_HASH = config("API_HASH", default=None)
|
18 |
OWNER_ID = int(config("OWNER_ID", default=1344569458))
|
19 |
MESSAGE_DUMP = int(config("MESSAGE_DUMP", default=-100))
|
|
|
40 |
# Fill in these vars if you want to use Traditional method of deploying
|
41 |
LOGGER = True
|
42 |
BOT_TOKEN = "YOUR BOT_TOKEN"
|
43 |
+
API_ID = 12345 # Your APP_ID from Telegram
|
44 |
API_HASH = "YOUR API HASH" # Your APP_HASH from Telegram
|
45 |
OWNER_ID = 1344569458 # Your telegram user id
|
46 |
MESSAGE_DUMP = -100 # Your Private Group ID for logs
|