chore: add deep_link register_all

This commit is contained in:
Louis 2025-08-05 22:32:27 +07:00 committed by Ramon Perez
parent f41a04b1a2
commit e74601443f

View File

@ -129,6 +129,12 @@ pub fn run() {
if let Err(e) = setup::install_extensions(app.handle().clone(), false) {
log::error!("Failed to install extensions: {}", e);
}
#[cfg(any(windows, target_os = "linux"))]
{
use tauri_plugin_deep_link::DeepLinkExt;
app.deep_link().register_all()?;
}
setup_mcp(app);
Ok(())
})