Ruby-Cogs/battleship/__init__.py
2025-04-02 22:56:57 -04:00

6 lines
166 B
Python

from .battleship import Battleship
__red_end_user_data_statement__ = 'This cog does not store user data.'
async def setup(bot):
await bot.add_cog(Battleship(bot))