blob: ff9da8ba58edde0bce4ca531843cfa6d67a05c7b [file] [log] [blame]
PineaFan5bea7e12023-01-05 21:20:04 +00001import type { CommandInteraction } from "discord.js";
Samuel Shuert27bf3cd2023-03-03 15:51:25 -05002import type { SlashCommandSubcommandBuilder } from "discord.js";
pineafan73a7c4a2022-07-24 10:38:04 +01003import close from "../../actions/tickets/delete.js";
pineafan4f164f32022-02-26 22:07:12 +00004
Skyler Grey11236ba2022-08-08 21:13:33 +01005const command = (builder: SlashCommandSubcommandBuilder) => builder.setName("close").setDescription("Closes a ticket");
pineafan4f164f32022-02-26 22:07:12 +00006
Skyler Grey1a67e182022-08-04 23:05:44 +01007const callback = async (interaction: CommandInteraction): Promise<void> => {
pineafan377794f2022-04-18 19:01:01 +01008 await close(interaction);
pineafan63fc5e22022-08-04 22:04:10 +01009};
pineafan4f164f32022-02-26 22:07:12 +000010
pineafan4f164f32022-02-26 22:07:12 +000011export { command };
12export { callback };