aboutsummaryrefslogtreecommitdiffstats
path: root/clients/www/src-tauri/src
diff options
context:
space:
mode:
Diffstat (limited to 'clients/www/src-tauri/src')
-rw-r--r--clients/www/src-tauri/src/main.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/clients/www/src-tauri/src/main.rs b/clients/www/src-tauri/src/main.rs
new file mode 100644
index 0000000..f5c5be2
--- /dev/null
+++ b/clients/www/src-tauri/src/main.rs
@@ -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");
+}