Files
aikaterna-cogs/chatchart/__init__.py
2018-01-27 22:12:08 -08:00

8 lines
140 B
Python

from discord.ext import commands
from .chatchart import Chatchart
def setup(bot: commands.Bot):
n = Chatchart(bot)
bot.add_cog(n)