diff options
| author | 2020-03-31 17:13:48 +0300 | |
|---|---|---|
| committer | 2020-03-31 17:13:48 +0300 | |
| commit | 959a4d00b4cc87ff2d5bacc0496b3dadf69468c7 (patch) | |
| tree | 61b606e9c2cc3eeebf8cb2906dfc5694389fa93d /bot/constants.py | |
| parent | (Games Cog): Updated task repeating cooldown time. (diff) | |
| parent | Merge pull request #364 from ks129/space-cog (diff) | |
Merge branch 'master' into game-fuzzy
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 26cc9715..e0737e86 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -66,6 +66,7 @@ class Client(NamedTuple):      guild = int(environ.get("SEASONALBOT_GUILD", 267624335836053506))      prefix = environ.get("PREFIX", ".")      token = environ.get("SEASONALBOT_TOKEN") +    sentry_dsn = environ.get("SEASONALBOT_SENTRY_DSN")      debug = environ.get("SEASONALBOT_DEBUG", "").lower() == "true"      season_override = environ.get("SEASON_OVERRIDE")      icon_cycle_frequency = 3  # N days to wait between cycling server icons within a single season @@ -138,6 +139,7 @@ class Tokens(NamedTuple):      omdb = environ.get("OMDB_API_KEY")      youtube = environ.get("YOUTUBE_API_KEY")      tmdb = environ.get("TMDB_API_KEY") +    nasa = environ.get("NASA_API_KEY")      igdb = environ.get("IGDB_API_KEY")  |