[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
This commit is contained in:
Will
2018-03-02 23:42:20 -05:00
committed by Tobotimus
parent b10b746d9e
commit f65085946c
6 changed files with 749 additions and 95 deletions

View File

@@ -1,5 +1,8 @@
from .audio import Audio
from discord.ext import commands
def setup(bot):
bot.add_cog(Audio(bot))
async def setup(bot: commands.Bot):
cog = Audio(bot)
await cog.init_config()
bot.add_cog(cog)