Added tauri files

This commit is contained in:
Z4NR34L 2023-01-02 15:01:10 +01:00
parent daad471215
commit 0e781c35b6
No known key found for this signature in database
GPG key ID: 77F5F2B35C2F56C3
22 changed files with 3230 additions and 0 deletions

10
src-tauri/src/main.rs Normal file
View file

@ -0,0 +1,10 @@
#![cfg_attr(
all(not(debug_assertions), target_os = "windows"),
windows_subsystem = "windows"
)]
fn main() {
tauri::Builder::default()
.run(tauri::generate_context!())
.expect("error while running tauri application");
}