8 lines
145 B
Python
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()
|