aboutsummaryrefslogtreecommitdiff
path: root/code/global_variables.py
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-04-09 01:28:12 -0500
committerParker <contact@pkrm.dev>2024-04-09 01:28:12 -0500
commit781d9ad7b2685de2c16aeb0e523f18a2ac2c8fef (patch)
tree67a7d8bbed49b9be72d4b75e213a6061bfa0b61f /code/global_variables.py
parentd7fa64ffa2dd960a462633eb008faac80d76185b (diff)
Add new spotify variables
Diffstat (limited to 'code/global_variables.py')
-rw-r--r--code/global_variables.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/code/global_variables.py b/code/global_variables.py
index 31d0df2..f79a3bb 100644
--- a/code/global_variables.py
+++ b/code/global_variables.py
@@ -47,6 +47,8 @@ config.read_string(file_contents)
BOT_TOKEN = config["BOT_INFO"]["TOKEN"]
BOT_COLOR = discord.Color(int((config["BOT_INFO"]["BOT_COLOR"]).replace("#", ""), 16))
FEEDBACK_CHANNEL_ID = int(config["BOT_INFO"]["FEEDBACK_CHANNEL_ID"])
+SPOTIFY_CLIENT_ID = config["BOT_INFO"]["SPOTIFY_CLIENT_ID"]
+SPOTIFY_CLIENT_SECRET = config["BOT_INFO"]["SPOTIFY_CLIENT_SECRET"]
BUG_CHANNEL_ID = int(config["BOT_INFO"]["BUG_CHANNEL_ID"])
BOT_INVITE_LINK = config["BOT_INFO"]["BOT_INVITE_LINK"]