6 lines
147 B
Python
6 lines
147 B
Python
from .reginaldgptCog import ReginaldGptCog
|
|
from redbot.core.bot import Red
|
|
|
|
def setup(bot: Red):
|
|
cog = ReginaldGptCog(bot)
|
|
bot.add_cog(cog) |