feat: initialize Tauri project structure

- Add @tauri-apps/api dependency
- Create src-tauri directory with base configuration
- Generate Tauri project Rust code framework
- Add application icon resources
This commit is contained in:
farion1231
2025-08-23 19:57:42 +08:00
parent 6706889387
commit 1b0ab269fb
25 changed files with 122 additions and 0 deletions

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

@@ -0,0 +1,6 @@
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
app_lib::run();
}