Files
aikaterna-cogs/otherbot/__init__.py
Jamie 402a4728d6 [otherbot] Avoid a lot of config calls. (#131)
* [otherbot] Avoid a lot of config calls.

* after.guild
2020-06-30 16:24:59 -07:00

8 lines
131 B
Python

from .otherbot import Otherbot
async def setup(bot):
cog = Otherbot(bot)
await cog.generate_cache()
bot.add_cog(cog)