Ruby-Cogs/shop/__init__.py

9 lines
211 B
Python

from .shop import Shop
__red_end_user_data_statement__ = "This cog stores discord IDs as needed for operation."
async def setup(bot):
shop = Shop()
await shop.initialize()
await bot.add_cog(shop)