chore(release): release tauri v1.0.3

This commit is contained in:
Soybean
2024-04-16 00:19:23 +08:00
parent d9af5aa2d3
commit f4cf4c8d57
26 changed files with 3883 additions and 1 deletions

8
src-tauri/src/main.rs Normal file
View File

@@ -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");
}