Brandon209-Red-bot-Cogs/isolate/__init__.py

10 lines
255 B
Python
Raw Normal View History

from .isolate import Isolate
__red_end_user_data_statement__ = "This cog stores members who are currently isolated for moderation purposes."
2021-02-06 21:42:47 +13:00
async def setup(bot):
isolate = Isolate(bot)
await isolate.initialize()
2023-05-05 07:33:23 +12:00
await bot.add_cog(isolate)