mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-15 05:31:42 +03:00
9105588373
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
17 lines
432 B
Rust
17 lines
432 B
Rust
// 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/helloworld/tauri.conf.json"
|
|
))
|
|
.expect("error while running tauri application");
|
|
}
|