9 lines
283 B
Rust
9 lines
283 B
Rust
#[tauri::command]
|
|
pub fn wave(name: &str) -> String {
|
|
format!("Hello, {}! You've been waved from Rust, with a different file!", name)
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub fn greet(name: &str) -> String {
|
|
format!("Hello, {}! You've been greeted from Rust, with a different file!", name)
|
|
} |