Ruby-Cogs/martools/__init__.py
Valerie 48256636da
Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run
Fix typo in docstring for Nsfw cog settings command.
2025-05-23 03:03:38 -04:00

11 lines
258 B
Python

from redbot.core.bot import Red
from .marttools import MartTools
__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)
async def setup(bot: Red):
cog = MartTools(bot)
await bot.add_cog(cog)