12345678910111213141516 |
- // Copyright 2019-2021 Tauri Programme within The Commons Conservancy
- // SPDX-License-Identifier: Apache-2.0
- // SPDX-License-Identifier: MIT
- #![cfg_attr(
- all(not(debug_assertions), target_os = "windows"),
- windows_subsystem = "windows"
- )]
- fn main() {
- tauri::Builder::default()
- .run(tauri::generate_context!(
- "../../examples/navigation/tauri.conf.json"
- ))
- .expect("error while running tauri application");
- }
|