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

10 lines
222 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()
bot.add_cog(n)