mirror of
https://github.com/arx-research/libhalo.git
synced 2026-01-09 13:18:04 -05:00
19 lines
430 B
TypeScript
19 lines
430 B
TypeScript
/**
|
|
* 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
|
|
*/
|
|
|
|
import {parseArgs} from './args_bridge.js';
|
|
import {runHalo} from "./cli.js";
|
|
import {printVersionInfo} from "./version.js";
|
|
|
|
const args = parseArgs();
|
|
|
|
if (!args) {
|
|
process.exit(0);
|
|
}
|
|
|
|
printVersionInfo();
|
|
runHalo("server", args);
|