aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar Chris <[email protected]>2021-01-08 00:04:44 +0000
committerGravatar Chris <[email protected]>2021-01-08 00:04:44 +0000
commit8e54fab377c7f798259bbf217afc8c3f68c9fb0f (patch)
tree5dc703fb34b2c8fb2d2f0cd93ff6f8dbb5f7c5f0 /bot/constants.py
parentMerge pull request #510 from hedythedev/hackstats (diff)
Get and renew V4 OAuth token
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py
index f6da272e..e638dfa1 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -174,7 +174,7 @@ class Emojis:
christmas_tree = "\U0001F384"
check = "\u2611"
envelope = "\U0001F4E8"
- trashcan = "<:trashcan:637136429717389331>"
+ trashcan = "<:trashcan:796854840293589003>"
ok_hand = ":ok_hand:"
dice_1 = "<:dice_1:755891608859443290>"
@@ -257,7 +257,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")