@nestbox-ai/cli
Version:
The cli tools that helps developers to build agents
20 lines • 747 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.registerComputeProgram = registerComputeProgram;
const list_1 = require("./compute/list");
const create_1 = require("./compute/create");
const delete_1 = require("./compute/delete");
/**
* Register all compute-related commands
*/
function registerComputeProgram(program) {
// Create the main compute command
const computeCommand = program
.command('compute')
.description('Manage Nestbox computes');
// Register all subcommands
(0, list_1.registerListCommand)(computeCommand);
(0, create_1.registerCreateCommand)(computeCommand);
(0, delete_1.registerDeleteCommand)(computeCommand);
}
//# sourceMappingURL=compute.js.map