blob: 4295f9c58614fbb140a8df5587173eeb4adb17ad [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandBuilder } from "@discordjs/builders";
const command = new SlashCommandBuilder().setName("help").setDescription("Shows help for commands");
const callback = async (interaction: CommandInteraction): Promise<void> => {
interaction.reply("hel p D:"); // TODO: FINISH THIS FOR RELEASE
};
const check = (_interaction: CommandInteraction) => {
return true;
};
export { command };
export { callback };
export { check };