UNPKG

@hangtime/grip-connect-cli

Version:
29 lines 928 B
/** * Command registration aggregator. * * Imports every command module and wires it onto the root Commander program. */ import { registerActive } from "./active.js"; import { registerDownload } from "./download.js"; import { registerInfo } from "./info.js"; import { registerInteractive } from "./interactive.js"; import { registerList } from "./list.js"; import { registerStream } from "./stream.js"; import { registerTare } from "./tare.js"; import { registerWatch } from "./watch.js"; /** * Registers all CLI commands on the Commander program. * * @param program - The root Commander program instance. */ export function registerCommands(program) { registerList(program); registerStream(program); registerWatch(program); registerInfo(program); registerDownload(program); registerTare(program); registerActive(program); registerInteractive(program); } //# sourceMappingURL=index.js.map