blob: 8f906124edc87009fea926cdd4f3a78d3e026f0d [file] [log] [blame]
PineaFan64486c42022-12-28 09:21:04 +00001import { command } from "../../utils/commandRegistration/slashCommandBuilder.js";
2
pineafan4f164f32022-02-26 22:07:12 +00003const name = "ticket";
4const description = "Manage modmail tickets";
5
TheCodedProf7b985d82023-06-08 16:40:41 -04006const subcommand: Awaited<ReturnType<typeof command>> = await command(name, description, `ticket`);
PineaFan64486c42022-12-28 09:21:04 +00007
8export { name, description, subcommand as command };