Implement and expose read and write helpers for clipboard
This commit is contained in:
parent
6887afdb2c
commit
7a335a0408
4 changed files with 22 additions and 1 deletions
3
src/clipboard.rs
Normal file
3
src/clipboard.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
//! Access the clipboard.
|
||||
#[cfg(not(target_arch = "wasm32"))]
|
||||
pub use crate::runtime::clipboard::{read, write};
|
||||
|
|
@ -183,6 +183,7 @@ mod error;
|
|||
mod result;
|
||||
mod sandbox;
|
||||
|
||||
pub mod clipboard;
|
||||
pub mod executor;
|
||||
pub mod keyboard;
|
||||
pub mod mouse;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue