- 将库名称从 `tauri_demo_lib` 更改为 `tauri_shell_lib` 以确保名称唯一性并避免潜在冲突。 - 更新注释以统一使用“Sidecar”术语,明确标识进程启动与清理操作 - 将主函数中的库调用从 tauri_demo_lib 更改为 tauri_shell_lib。
7 lines
186 B
Rust
7 lines
186 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
tauri_shell_lib::run()
|
|
}
|