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

9 lines
248 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."
async def setup(bot):
isolate = Isolate(bot)
await isolate.initialize()
bot.add_cog(isolate)