12 lines
340 B
Rust
12 lines
340 B
Rust
|
|
mod release_trust;
|
||
|
|
|
||
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
||
|
|
pub fn run() {
|
||
|
|
tauri::Builder::default()
|
||
|
|
.setup(|app| {
|
||
|
|
release_trust::install_updater_if_provisioned(app.handle())?;
|
||
|
|
Ok(())
|
||
|
|
})
|
||
|
|
.run(tauri::generate_context!())
|
||
|
|
.expect("failed to run HoloLake native desktop");
|
||
|
|
}
|