mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-27 15:13:23 +03:00
14 lines
398 B
Rust
14 lines
398 B
Rust
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
tauri::Builder::default()
|
|
.run(tauri::generate_context!(
|
|
"../../examples/helloworld/tauri.conf.json"
|
|
))
|
|
.expect("error while running tauri application");
|
|
}
|