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