| // Copyright 2019-2024 Tauri Programme within The Commons Conservancy | |
| // SPDX-License-Identifier: Apache-2.0 | |
| // SPDX-License-Identifier: MIT | |
| fn app_loaded_successfully() { | |
| std::process::exit(0); | |
| } | |
| fn main() { | |
| tauri::Builder::default() | |
| .invoke_handler(tauri::generate_handler![app_loaded_successfully]) | |
| .run(tauri::generate_context!()) | |
| .expect("error while running tauri application"); | |
| } | |