mirror of
https://github.com/OSMA-D/osma-app.git
synced 2025-03-04 09:11:25 +03:00
feat: init osma tauri OA-1
This commit is contained in:
parent
089d85c77b
commit
f54437cdc6
33 changed files with 6615 additions and 12 deletions
10
src-tauri/src/main.rs
Normal file
10
src-tauri/src/main.rs
Normal 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");
|
||||
}
|
Loading…
Add table
Reference in a new issue