apiful
Version:
Extensible, typed API tooling
17 lines (14 loc) • 348 B
JavaScript
import { defineCommand, runMain } from 'citty';
const name = "apiful";
const version = "2.0.2";
const command = defineCommand({
meta: {
name,
version,
description: "APIful CLI: Extensible, Typed API Tooling"
},
subCommands: {
generate: () => import('../chunks/generate.mjs').then((r) => r.default)
}
});
runMain(command);