From 051748771895bb040188221c3e4136878dbedb8a Mon Sep 17 00:00:00 2001 From: Jeremy Chone Date: Mon, 20 Jun 2022 01:02:15 -0700 Subject: . initial --- src-tauri/src/main.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src-tauri/src/main.rs (limited to 'src-tauri/src') diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs new file mode 100644 index 00000000..65bb630c --- /dev/null +++ b/src-tauri/src/main.rs @@ -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"); +} -- cgit v1.2.3