Skip to main content

Mountain/IPC/WindServiceHandlers/NativeHost/
ClipboardReadImage.rs

1//! Wire method: `nativeHost:readImage`.
2//! Binary image clipboard not yet implemented - returns empty array.
3
4use serde_json::{Value, json};
5
6pub async fn Fn(_Arguments:Vec<Value>) -> Result<Value, String> { Ok(json!([])) }