1//! Wire method: `lifecycle:requestShutdown`. 2 3use serde_json::Value; 4use tauri::AppHandle; 5 6pub async fn Fn(ApplicationHandle:AppHandle) -> Result<Value, String> { 7 ApplicationHandle.exit(0); 8 9 Ok(Value::Null) 10}