1//! Wire method: `nativeHost:hasClipboard`. 2 3use serde_json::{Value, json}; 4 5pub async fn Fn(_Arguments:Vec<Value>) -> Result<Value, String> { Ok(json!(false)) }