openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
11 lines (10 loc) • 490 B
JavaScript
import { r as registerCoreCliCommands } from "./command-registry-core-CsqD_fXx.js";
import { n as registerSubCliCommands } from "./register.subclis-Dd04eCPl.js";
//#region src/cli/program/command-registry.ts
/** Register all root-program commands for the current argv shape. */
function registerProgramCommands(program, ctx, argv = process.argv) {
registerCoreCliCommands(program, ctx, argv);
registerSubCliCommands(program, argv);
}
//#endregion
export { registerProgramCommands as t };