JuicyBot_Base/commands/help.py

13 lines
199 B
Python

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))