FEAT: Twitch Module works correctly, checks users correctly

REF: Updated related files to allow for Twitch.
This commit is contained in:
Dan
2024-06-26 22:00:44 -04:00
parent 2fc26a3e6d
commit 91052663c6
3 changed files with 169 additions and 0 deletions

View File

@@ -54,6 +54,11 @@ class Selena(discord.Client):
youtube = YouTube(self)
youtube.setup(self.tree)
if config['modules']['twitch']['enabled']:
from modules.social.twitch import Twitch
twitch = Twitch(self)
twitch.setup(self.tree)
bot = Selena()