kind of need this (unfinished (not even started))

This commit is contained in:
Emily 2020-10-10 13:16:17 +11:00
parent df91191cf3
commit 2503b1a18a

17
bot/commands/Core/help.js Normal file
View file

@ -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 <command>` - Shows detailed information on a specific command.'",
aliases = ["cmds"]
});
}
async run (message, args, level) { // eslint-disable-line no-unused-vars
}
}
module.exports = Help;