1import { defineCommand } from "citty"; 2 3export default defineCommand({ 4 meta: { 5 name: "boostack", 6 description: "Helper commands for the BookStack knowledgebase service.", 7 }, 8 subCommands: { 9 update: () => import("./update").then((m) => m.default), 10 }, 11});