diff --git a/src/bot/commands/help.ts b/src/bot/commands/help.ts new file mode 100644 index 0000000..1c73589 --- /dev/null +++ b/src/bot/commands/help.ts @@ -0,0 +1,11 @@ +import Command from "../../struct/Command"; +import { Message } from "revolt.js/dist/maps/Messages"; + +export default { + name: 'help', + aliases: null, + description: 'help command i guess', + run: (message: Message, args: string[]) => { + message.reply(`command list can be found here kthxbay https://github.com/janderedev/revolt-automod/wiki/Bot-usage`); + } +} as Command;