Ruby-Cogs/appeals/__init__.py
Valerie 477974d53c
Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run
Upload 2 Cogs & Update README
2025-05-23 01:30:53 -04:00

11 lines
269 B
Python

from redbot.core.bot import Red
from redbot.core.utils import get_end_user_data_statement
from .main import Appeals
__red_end_user_data_statement__ = get_end_user_data_statement(__file__)
async def setup(bot: Red):
cog = Appeals(bot)
await bot.add_cog(cog)