// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/ #[tauri::command] fn greet(name: &str) -> String { format!("Hello, {}! You've been greeted from Rust!", name) } #[tauri::command] fn open_url(url: &str) { match open::that(url) { Err(_) => println!("Error opening url"), Ok(_) => println!("Opened url"), } } #[cfg_attr(mobile, tauri::mobile_entry_point)] pub fn run() { tauri::Builder::default() .plugin(tauri_plugin_store::Builder::new().build()) .plugin(tauri_plugin_opener::init()) .invoke_handler(tauri::generate_handler![greet]) .invoke_handler(tauri::generate_handler![open_url]) .run(tauri::generate_context!()) .expect("error while running tauri application"); }