forked from imbytecat/fullstack-starter
- 更新项目目录名为 app-desktop 以反映新的项目结构命名规范 - 添加应用桌面模块并移除已弃用的 tauri-shell 包依赖 - 更新项目名称和库名称以反映新的应用标识 - 将主函数中的启动逻辑从 tauri_shell_lib 改为 app_desktop_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() {
|
|
app_desktop_lib::run()
|
|
}
|