Skip to content

Commit

Permalink
Update info.py
Browse files Browse the repository at this point in the history
  • Loading branch information
VJBots authored Sep 30, 2023
1 parent 01325f8 commit e48a1df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions info.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ def is_enabled(value, default):
# Bot information
SESSION = environ.get('SESSION', 'Media_search')
API_ID = int(environ.get('API_ID', '20389440'))
API_HASH = environ.get('API_HASH', 'a1a06a18eb9153e9dbd447cfd5da2457')
BOT_TOKEN = environ.get('BOT_TOKEN', "6564513574:AAH3Y97iqQjSlV5vKKZdGDUohlhpA-LeSbw")
API_HASH = environ.get('API_HASH', 'a1a06a18eb9153e9dbd447cfd5da2457')
BOT_TOKEN = environ.get('BOT_TOKEN', "6564513574:AAH3Y97iqQjSlV5vKKZdGDUohlhpA-LeSbw")
PORT = int(environ.get('PORT', '8080'))

# Bot settings
CACHE_TIME = int(environ.get('CACHE_TIME', 300))
Expand Down Expand Up @@ -43,7 +44,6 @@ def is_enabled(value, default):
JOIN_REQS_DB = environ.get("JOIN_REQS_DB", DATABASE_URI)

# Others
PORT = environ.get("PORT", "8080")
LOG_CHANNEL = int(environ.get('LOG_CHANNEL', '-1001623633000'))
SUPPORT_CHAT = environ.get('SUPPORT_CHAT', 'VJ_Bot_Disscussion')
P_TTI_SHOW_OFF = is_enabled((environ.get('P_TTI_SHOW_OFF', "True")), False)
Expand Down

0 comments on commit e48a1df

Please sign in to comment.