diff options
author | Jeremy Chone <jeremy.chone@gmail.com> | 2022-06-20 01:02:15 -0700 |
---|---|---|
committer | Jeremy Chone <jeremy.chone@gmail.com> | 2022-06-20 01:02:15 -0700 |
commit | 051748771895bb040188221c3e4136878dbedb8a (patch) | |
tree | 9492d6020c9294b12b3fd912520746e0df847406 /src-tauri/src | |
download | FlightCore-051748771895bb040188221c3e4136878dbedb8a.tar.gz FlightCore-051748771895bb040188221c3e4136878dbedb8a.zip |
. initial
Diffstat (limited to 'src-tauri/src')
-rw-r--r-- | src-tauri/src/main.rs | 10 |
1 files changed, 10 insertions, 0 deletions
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"); +} |