2018-09-01 13:37:07 -07:00
|
|
|
from .otherbot import Otherbot
|
|
|
|
|
|
2020-08-26 17:57:43 +01:00
|
|
|
__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
|
|
|
|
2020-07-01 00:24:59 +01:00
|
|
|
async def setup(bot):
|
|
|
|
|
cog = Otherbot(bot)
|
|
|
|
|
await cog.generate_cache()
|
|
|
|
|
bot.add_cog(cog)
|