Ruby-Cogs/automod/__init__.py

12 lines
275 B
Python

import json
from pathlib import Path
from .automod import AutoMod
with open(Path(__file__).parent / "info.json") as fp:
__red_end_user_data_statement__ = json.load(fp)["end_user_data_statement"]
async def setup(bot):
cog = AutoMod(bot)
await bot.add_cog(cog)