Skip to content

Commit

Permalink
Add config variables for pygita API
Browse files Browse the repository at this point in the history
  • Loading branch information
TheShubhendra committed Jan 25, 2021
1 parent fe061f2 commit 760efd0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions telebot/telebotConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ class Config(object):
MAX_SPAM = int(os.environ.get("MAX_SPAM", 3))
# Lydia API
LYDIA_API = os.environ.get("LYDIA_API", None)
GITA_CLIENT_ID = os.environ.get("GITA_CLIENT_ID", None)
GITA_CLIENT_SECRET = os.environ.get("GITA_CLIENT_SECRET", None)
FBAN_GROUP_ID = os.environ.get("FBAN_GROUP_ID", None)
if FBAN_GROUP_ID:
FBAN_GROUP_ID = int(FBAN_GROUP_ID)
Expand Down

0 comments on commit 760efd0

Please sign in to comment.