feat(cli): add create command

This commit is contained in:
ty
2026-03-22 14:47:08 +08:00
parent fd50174ede
commit bef49e0c96
2 changed files with 64 additions and 0 deletions
+2
View File
@@ -1,6 +1,7 @@
#!/usr/bin/env node
import { Command } from "commander";
import { registerConfigCommand } from "./commands/config.js";
import { registerCreateCommand } from "./commands/create.js";
const program = new Command();
@@ -11,5 +12,6 @@ program
.option("--json", "output as JSON");
registerConfigCommand(program);
registerCreateCommand(program);
program.parse();