FEAT: Added Music Player

DOC: Changed .gitingore to prevent tracking ffmpeg
REF: Changed code needed to active the new module
This commit is contained in:
Dan
2024-06-25 22:23:15 -04:00
parent 338752b31a
commit f75564760e
4 changed files with 171 additions and 1 deletions

View File

@@ -44,6 +44,11 @@ class Selena(discord.Client):
destiny2 = Destiny2(self)
destiny2.setup(self.tree)
if config['modules']['music']['enabled']:
from modules.music.music import Music
music = Music(self)
music.setup(self.tree)
bot = Selena()