FEAT: Added Twitch module (can't check if it's working yet due to a sync issue)

FIX: Added the needed changes to the code for the new module
This commit is contained in:
Dan
2024-06-25 00:02:13 -04:00
parent 49a7588699
commit bd318a7815
3 changed files with 142 additions and 4 deletions

View File

@@ -6,12 +6,18 @@ load_dotenv()
config = {
'DISCORD_TOKEN': os.getenv('DISCORD_TOKEN'),
'GUILD_ID': int(os.getenv('DISCORD_GUILD_ID')),
'DISCORD_CHANNEL_ID': int(os.getenv('DISCORD_CHANNEL_ID')),
'TWITCH_CLIENT_ID': os.getenv('TWITCH_CLIENT_ID'),
'TWITCH_CLIENT_SECRET': os.getenv('TWITCH_CLIENT_SECRET'),
'modules': {
'currency': {
'enabled': True
},
'xp': {
'enabled': True
},
'twitch': {
'enabled': True
}
}
}