blob: e85cf6b9a51b0e5f6f26e49736a8d35535a79723 [file] [log] [blame]
PineaFan752af462022-12-31 21:59:38 +00001import type { CommandInteraction } from "discord.js";
pineafan4f164f32022-02-26 22:07:12 +00002import { SlashCommandBuilder } from "@discordjs/builders";
pineafan4f164f32022-02-26 22:07:12 +00003
PineaFan752af462022-12-31 21:59:38 +00004const command = new SlashCommandBuilder()
5 .setName("help")
6 .setDescription("Shows help for commands");
pineafan4f164f32022-02-26 22:07:12 +00007
pineafan63fc5e22022-08-04 22:04:10 +01008const callback = async (interaction: CommandInteraction): Promise<void> => {
PineaFan64486c42022-12-28 09:21:04 +00009 interaction.reply("hel p D:"); // TODO: FINISH THIS FOR RELEASE
pineafan63fc5e22022-08-04 22:04:10 +010010};
pineafan4f164f32022-02-26 22:07:12 +000011
PineaFan64486c42022-12-28 09:21:04 +000012const check = (_interaction: CommandInteraction) => {
pineafan4f164f32022-02-26 22:07:12 +000013 return true;
pineafan63fc5e22022-08-04 22:04:10 +010014};
pineafan4f164f32022-02-26 22:07:12 +000015
16export { command };
17export { callback };
Skyler Grey75ea9172022-08-06 10:22:23 +010018export { check };