Files
vat-api.eu/node_modules/nitropack/dist/cli/index2.mjs
2026-02-13 22:02:30 +01:00

15 lines
334 B
JavaScript

import { defineCommand } from 'citty';
const index = defineCommand({
meta: {
name: "task",
description: "Operate in nitro tasks (experimental)"
},
subCommands: {
list: () => import('./list.mjs').then((r) => r.default),
run: () => import('./run.mjs').then((r) => r.default)
}
});
export { index as default };