feat(hololake): add resumable direct local AI broker

This commit is contained in:
冰朔 2026-08-13 12:21:04 +08:00
commit 9d1801266c
10 changed files with 1289 additions and 9 deletions

View file

@ -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();
}