main.rs 432 B

12345678910111213141516
  1. // Copyright 2019-2022 Tauri Programme within The Commons Conservancy
  2. // SPDX-License-Identifier: Apache-2.0
  3. // SPDX-License-Identifier: MIT
  4. #![cfg_attr(
  5. all(not(debug_assertions), target_os = "windows"),
  6. windows_subsystem = "windows"
  7. )]
  8. fn main() {
  9. tauri::Builder::default()
  10. .run(tauri::generate_context!(
  11. "../../examples/navigation/tauri.conf.json"
  12. ))
  13. .expect("error while running tauri application");
  14. }