6 lines
144 B
Python
Raw Normal View History

2023-03-18 17:27:50 +01:00
from redbot.core.bot import Red
2023-03-18 17:47:37 +01:00
from .reginaldgpt import ReginaldGptCog
2023-03-18 17:15:15 +01:00
def setup(bot: Red):
cog = ReginaldGptCog(bot)
bot.add_cog(cog)