Will f65085946c [V3 Audio] Initial V3 addition (#1373)
* Initial audio

* Add application data and modify port

* Modify codeowners

* Need extra newline

* add yml to manifest

* lock lavalink version
2018-03-03 15:42:20 +11:00

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)