UNPKG

@nestbox-ai/cli

Version:

The cli tools that helps developers to build agents

20 lines 726 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.registerProjectCommands = registerProjectCommands; const use_1 = require("./project/use"); const add_1 = require("./project/add"); const list_1 = require("./project/list"); /** * Register all project-related commands */ function registerProjectCommands(program) { // Create the main project command const projectCommand = program .command("project") .description("Manage Nestbox projects"); // Register all subcommands (0, use_1.registerUseCommand)(projectCommand); (0, add_1.registerAddCommand)(projectCommand); (0, list_1.registerListCommand)(projectCommand); } //# sourceMappingURL=project.js.map