import type { Command, SubcommandGroupBuilder } from "@purrkit/router"; import ticketCommand from "./tickets/command"; import meowCommand from "./meow"; export const commands: (SubcommandGroupBuilder | Command)[] = [ticketCommand, meowCommand]; export default commands;