mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
9 lines
155 B
Python
9 lines
155 B
Python
from .alias import Alias
|
|
from redbot.core.bot import Red
|
|
|
|
|
|
async def setup(bot: Red):
|
|
cog = Alias(bot)
|
|
await cog.initialize()
|
|
bot.add_cog(cog)
|