Files
aikaterna-cogs/chatchart/__init__.py

8 lines
140 B
Python
Raw Normal View History

2018-01-27 22:12:08 -08:00
from discord.ext import commands
2018-01-27 22:03:43 -08:00
from .chatchart import Chatchart
def setup(bot: commands.Bot):
n = Chatchart(bot)
bot.add_cog(n)