mirror of
https://github.com/arx-research/libhalo.git
synced 2026-01-10 05:38:10 -05:00
19 lines
437 B
JavaScript
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);
|