parent
69e2e5acb3
commit
b566b58e1a
@ -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
Loading…
Reference in new issue