Ruby-Cogs/unbelievaboat/__init__.py
Valerie 7da3f0ab66
Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run
Add the economy boat cog
2025-05-23 02:17:01 -04:00

11 lines
315 B
Python

from .unbelievaboat import Unbelievaboat
__red_end_user_data_statement__ = (
"This cog stores data attached to a users ID for intent of showing a balance.\n"
"It does not store user data.\n"
"This cog supports data removal requests."
)
async def setup(bot):
await bot.add_cog(Unbelievaboat(bot))