Fox-V3/infochannel/__init__.py
2020-12-08 10:54:59 -05:00

8 lines
145 B
Python

from .infochannel import InfoChannel
async def setup(bot):
ic_cog = InfoChannel(bot)
bot.add_cog(ic_cog)
await ic_cog.initialize()