1 2//! Tauri command - return the running process ID via 3//! `std::process::id()`. 4 5#[tauri::command] 6pub async fn process_get_pid() -> Result<u32, String> { Ok(std::process::id()) }