Files
DeEarthX-V3/front/src-tauri/src/lib.rs
2025-10-04 00:06:07 +08:00

29 lines
896 B
Rust

use tauri::Manager;
// 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_notification::init())
.plugin(tauri_plugin_shell::init())
.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");
}