introduce tauri for the desktop version

This commit is contained in:
2023-08-03 17:38:08 +02:00
parent f1b3190d41
commit bd76893282
24 changed files with 3805 additions and 20 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");
}