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