6 lines
147 B
Python
Raw Permalink Normal View History

2023-03-14 17:43:11 +01:00
from redbot.core.bot import Red
2023-03-14 17:24:21 +01:00
from .reginald import ReginaldCog
async def setup(bot: Red):
2023-03-14 17:24:21 +01:00
cog = ReginaldCog(bot)
await bot.add_cog(cog)