2024-09-23 12:18:17 +02:00
|
|
|
// Learn more about Tauri commands at https://tauri.app/v1/guides/features/command
|
|
|
|
#[tauri::command]
|
|
|
|
fn greet(name: &str) -> String {
|
|
|
|
format!("Hello, {}! You've been greeted from Rust!", name)
|
2024-07-24 11:58:03 +02:00
|
|
|
}
|
|
|
|
|
2024-07-23 20:08:45 +02:00
|
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
|
|
|
pub fn run() {
|
|
|
|
tauri::Builder::default()
|
2024-09-23 12:18:17 +02:00
|
|
|
.plugin(tauri_plugin_shell::init())
|
|
|
|
.invoke_handler(tauri::generate_handler![greet])
|
2024-07-23 20:08:45 +02:00
|
|
|
.run(tauri::generate_context!())
|
|
|
|
.expect("error while running tauri application");
|
|
|
|
}
|