feat(hololake): add resumable direct local AI broker
This commit is contained in:
parent
5c86f85242
commit
9d1801266c
10 changed files with 1289 additions and 9 deletions
|
|
@ -1,5 +1,12 @@
|
|||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||
|
||||
fn main() {
|
||||
if std::env::args().any(|argument| argument == "--connector") {
|
||||
if let Err(error) = hololake_native_desktop_lib::run_connector() {
|
||||
eprintln!("{error}");
|
||||
std::process::exit(1);
|
||||
}
|
||||
return;
|
||||
}
|
||||
hololake_native_desktop_lib::run();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue