import { defineCommand } from 'citty'; const index = defineCommand({ meta: { name: "module", description: "Manage Nuxt modules" }, args: {}, subCommands: { add: () => import('./add2.mjs').then((r) => r.default || r), search: () => import('./search.mjs').then((r) => r.default || r) } }); export { index as default };