Files
libhalo/cli/entry_bridge.js

19 lines
437 B
JavaScript

/**
* LibHaLo - Programmatically interact with HaLo tags from the web browser, mobile application or the desktop.
* Copyright by Arx Research, Inc., a Delaware corporation
* License: MIT
*/
const {parseArgs} = require('./args_bridge.js');
const {runHalo} = require("./cli");
const {printVersionInfo} = require("./version");
let args = parseArgs();
if (!args) {
process.exit(0);
}
printVersionInfo();
runHalo("server", args);