6 lines
135 B
Python
6 lines
135 B
Python
from redbot.core.bot import Red
|
|
from .reginald import ReginaldCog
|
|
|
|
def setup(bot: Red):
|
|
cog = ReginaldCog(bot)
|
|
bot.add_cog(cog) |