import { defineCommand, runMain } from "citty"; const main = defineCommand({ meta: { name: "bcli", version: "0.1.0", description: "Command line helper for Shopware, WordPress and various other server environment needs.", }, subCommands: { bookstack: () => import("./commands/bookstack").then((m) => m.default), }, }); runMain(main);