UNPKG

@foxglove/ws-protocol-examples

Version:

Foxglove WebSocket protocol examples

32 lines 1.88 kB
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const commander_1 = require("commander"); const image_server_1 = tslib_1.__importDefault(require("./examples/image-server")); const mcap_play_1 = tslib_1.__importDefault(require("./examples/mcap-play")); const mcap_record_1 = tslib_1.__importDefault(require("./examples/mcap-record")); const param_client_1 = tslib_1.__importDefault(require("./examples/param-client")); const param_server_1 = tslib_1.__importDefault(require("./examples/param-server")); const perf_test_client_1 = tslib_1.__importDefault(require("./examples/perf-test-client")); const publish_client_1 = tslib_1.__importDefault(require("./examples/publish-client")); const service_client_1 = tslib_1.__importDefault(require("./examples/service-client")); const service_server_1 = tslib_1.__importDefault(require("./examples/service-server")); const simple_client_1 = tslib_1.__importDefault(require("./examples/simple-client")); const sysmon_1 = tslib_1.__importDefault(require("./examples/sysmon")); commander_1.program.name("ws-protocol-examples"); commander_1.program.addCommand(image_server_1.default); commander_1.program.addCommand(mcap_play_1.default); commander_1.program.addCommand(mcap_record_1.default); commander_1.program.addCommand(publish_client_1.default); commander_1.program.addCommand(simple_client_1.default); commander_1.program.addCommand(sysmon_1.default); commander_1.program.addCommand(perf_test_client_1.default); commander_1.program.addCommand(param_client_1.default); commander_1.program.addCommand(param_server_1.default); commander_1.program.addCommand(service_client_1.default); commander_1.program.addCommand(service_server_1.default); commander_1.program.parseAsync().catch((error) => { console.error(error); }); //# sourceMappingURL=index.js.map