blob: 4295f9c58614fbb140a8df5587173eeb4adb17ad [file] [log] [blame]
pineafan4f164f32022-02-26 22:07:12 +00001import { CommandInteraction } from "discord.js";
2import { SlashCommandBuilder } from "@discordjs/builders";
pineafan4f164f32022-02-26 22:07:12 +00003
Skyler Grey11236ba2022-08-08 21:13:33 +01004const command = new SlashCommandBuilder().setName("help").setDescription("Shows help for commands");
pineafan4f164f32022-02-26 22:07:12 +00005
pineafan63fc5e22022-08-04 22:04:10 +01006const callback = async (interaction: CommandInteraction): Promise<void> => {
PineaFan64486c42022-12-28 09:21:04 +00007 interaction.reply("hel p D:"); // TODO: FINISH THIS FOR RELEASE
pineafan63fc5e22022-08-04 22:04:10 +01008};
pineafan4f164f32022-02-26 22:07:12 +00009
PineaFan64486c42022-12-28 09:21:04 +000010const check = (_interaction: CommandInteraction) => {
pineafan4f164f32022-02-26 22:07:12 +000011 return true;
pineafan63fc5e22022-08-04 22:04:10 +010012};
pineafan4f164f32022-02-26 22:07:12 +000013
14export { command };
15export { callback };
Skyler Grey75ea9172022-08-06 10:22:23 +010016export { check };