Files

12 lines
289 B
Python
Raw Permalink Normal View History

2018-09-01 13:37:07 -07:00
from .otherbot import Otherbot
__red_end_user_data_statement__ = (
"This cog does not persistently store end user data. " "This cog does store discord IDs as needed for operation. "
)
2018-09-01 13:37:07 -07:00
async def setup(bot):
cog = Otherbot(bot)
await cog.generate_cache()
bot.add_cog(cog)