8 lines
140 B
Python
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)
|