2026-07-18 16:44:11 +08:00
|
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
|
|
|
|
pub fn run() {
|
|
|
|
|
tauri::Builder::default()
|
|
|
|
|
.plugin(tauri_plugin_opener::init())
|
|
|
|
|
.run(tauri::generate_context!())
|
2026-07-22 15:06:51 +08:00
|
|
|
.expect("启动森林AI时发生错误");
|
2026-07-18 16:44:11 +08:00
|
|
|
}
|