Tauri setup main (#122)

* initial tauri port

* tweak build worflow
This commit is contained in:
Kurt Hutten
2023-06-07 17:45:13 +10:00
committed by GitHub
parent fbee151264
commit 1861bb94bb
25 changed files with 3806 additions and 30 deletions

8
src-tauri/src/main.rs Normal file
View File

@ -0,0 +1,8 @@
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
tauri::Builder::default()
.run(tauri::generate_context!())
.expect("error while running tauri application");
}