Files
aikaterna-cogs/cah/__init__.py
2018-12-17 11:33:32 -08:00

9 lines
218 B
Python

from redbot.core import commands, data_manager
from .cah import CardsAgainstHumanity
def setup(bot: commands.Bot):
n = CardsAgainstHumanity(bot)
data_manager.load_bundled_data(n, __file__)
bot.add_cog(n)