diff options
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index 2a306d94..1d41a53e 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -258,7 +258,8 @@ class Tokens(NamedTuple): youtube = environ.get("YOUTUBE_API_KEY") tmdb = environ.get("TMDB_API_KEY") nasa = environ.get("NASA_API_KEY") - igdb = environ.get("IGDB_API_KEY") + igdb_client_id = environ.get("IGDB_CLIENT_ID") + igdb_client_secret = environ.get("IGDB_CLIENT_SECRET") github = environ.get("GITHUB_TOKEN") |