elearning/Frontend-Learner/node_modules/nitropack/dist/cli/index2.mjs

15 lines
334 B
JavaScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
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 };