mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
10 lines
146 B
Python
10 lines
146 B
Python
from redbot.core.bot import Red
|
|
|
|
from .core import Audio
|
|
|
|
|
|
def setup(bot: Red):
|
|
cog = Audio(bot)
|
|
bot.add_cog(cog)
|
|
cog.start_up_task()
|