Ruby-Cogs/hangman/__init__.py

6 lines
157 B
Python

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