Brandon209-Red-bot-Cogs/nitroemoji/__init__.py

10 lines
228 B
Python
Raw Normal View History

from .nitroemoji import NitroEmoji
__red_end_user_data_statement__ = "This cog will store a user's custom emojis in each guild."
2020-02-09 08:53:01 +13:00
2021-02-06 21:42:47 +13:00
async def setup(bot):
n = NitroEmoji(bot)
await n.initialize()
2023-05-05 07:33:23 +12:00
await bot.add_cog(n)