import { kitten } from "@/client"; import { buildReportModal } from "./shared"; export const bugCommand = kitten.command("bug", { description: "Make a bug report", }); bugCommand.subcommand("report", { description: "Report a new bug", async run(interaction) { const modal = buildReportModal(); await interaction.showModal(modal); }, });