Ruby-Cogs/levelup/__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

10 lines
255 B
Python

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