8 lines
No EOL
300 B
Python
8 lines
No EOL
300 B
Python
from .inventory import Inventory
|
|
|
|
__red_end_user_data_statement__ = "This cog stores user inventory data and trading history. Users can delete their data using the built-in data deletion commands."
|
|
|
|
async def setup(bot):
|
|
cog = Inventory(bot)
|
|
await cog.initialize()
|
|
await bot.add_cog(cog) |