JuicyBot_Base/commands/help.py

13 lines
199 B
Python
Raw Normal View History

2020-05-05 13:06:53 +02:00
from discord.ext import commands
import configloader
class Help(commands.Cog):
def __init__(self, bot):
pass
def setup(bot):
bot.remove_command("help")
bot.add_cog(Help(bot))