mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
* Initial audio * Add application data and modify port * Modify codeowners * Need extra newline * add yml to manifest * lock lavalink version
9 lines
166 B
Python
9 lines
166 B
Python
from .audio import Audio
|
|
from discord.ext import commands
|
|
|
|
|
|
async def setup(bot: commands.Bot):
|
|
cog = Audio(bot)
|
|
await cog.init_config()
|
|
bot.add_cog(cog)
|