Files
libhalo/cli/src.ts/entry_bridge.ts
2024-07-18 18:50:55 +02:00

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);