feat(cli): add config module and config command

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ty
2026-03-22 14:42:54 +08:00
parent c716479a4e
commit 417ef25a4c
3 changed files with 87 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
#!/usr/bin/env node
import { Command } from "commander";
import { registerConfigCommand } from "./commands/config.js";
const program = new Command();
@@ -9,4 +10,6 @@ program
.version("0.1.0")
.option("--json", "output as JSON");
registerConfigCommand(program);
program.parse();