KaniumCogs/reginaldCog/__init__.py

6 lines
135 B
Python
Raw 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
2023-03-14 17:43:11 +01:00
def setup(bot: Red):
2023-03-14 17:24:21 +01:00
cog = ReginaldCog(bot)
bot.add_cog(cog)