woomy-v2/bot/commands/Core/help.js

18 lines
473 B
JavaScript
Raw Normal View History

const Command = require("../../base/Command.js");
class Help extends Command {
constructor (client) {
super(client, {
2020-10-10 08:37:11 +00:00
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"],
});
}
2020-10-10 03:01:56 +00:00
async run (message, args, data) { // eslint-disable-line no-unused-vars
}
}
module.exports = Help;