blob: e85cf6b9a51b0e5f6f26e49736a8d35535a79723 [file] [log] [blame]
import type { 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 };