@nestbox-ai/cli
Version:
The cli tools that helps developers to build agents
16 lines (13 loc) • 402 B
text/typescript
import { Command } from "commander";
import { registerListCommand } from "./image/list";
/**
* Register all image-related commands
*/
export function registerImageCommands(program: Command): void {
// Create the main image command
const imageCommand = program
.command("image")
.description("Manage Nestbox images");
// Register all subcommands
registerListCommand(imageCommand);
}