mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
* reorder some startup to prevent heartbeat issues * changelog * handle startup cleanup in audio * style * rebased to handle conflict * be a little smarter to prevent (some) infinite hangs * Fix a pre-existing NoneType Error * Migrate config before things are using it... * another place we should ensure we're ready * rename-toavoid-issues * fix cache ordering and mis-use of ensure_future * remove incorrect typehints * style
9 lines
133 B
Python
9 lines
133 B
Python
from redbot.core import commands
|
|
|
|
from .audio import Audio
|
|
|
|
|
|
def setup(bot: commands.Bot):
|
|
cog = Audio(bot)
|
|
bot.add_cog(cog)
|