Skip to main content

Mountain/IPC/WindServiceHandlers/NativeHost/
ClipboardReadBuffer.rs

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