Infochannel rewrite

This commit is contained in:
bobloy 2020-12-08 10:53:24 -05:00
parent 69e2e5acb3
commit b566b58e1a
2 changed files with 506 additions and 697 deletions

View File

@ -1,5 +1,9 @@
import asyncio
from .infochannel import InfoChannel
def setup(bot):
bot.add_cog(InfoChannel(bot))
async def setup(bot):
ic_cog = InfoChannel(bot)
bot.add_cog(ic_cog)
await ic_cog.initialize()

File diff suppressed because it is too large Load Diff