diff --git a/bot/commands/Core/help.js b/bot/commands/Core/help.js new file mode 100644 index 0000000..d3456a2 --- /dev/null +++ b/bot/commands/Core/help.js @@ -0,0 +1,17 @@ +const Command = require("../../base/Command.js"); + +class Help extends Command { + constructor (client) { + super(client, { + description = "Lists what commands Woomy has, what they do, and how to use them.", + usage = "'`help` - Lists all commands.\n`help ` - Shows detailed information on a specific command.'", + aliases = ["cmds"] + }); + } + + async run (message, args, level) { // eslint-disable-line no-unused-vars + + } +} + +module.exports = Help;