blindcopy 0.1.1

Copy data to clipboard without appearing in history or sync.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]

#[cfg(target_os = "linux")]
pub mod linux;
#[cfg(target_os = "macos")]
pub mod macos;
#[cfg(target_os = "windows")]
pub mod windows;

#[cfg(target_os = "linux")]
pub use linux::text;
#[cfg(target_os = "macos")]
pub use macos::text;
#[cfg(target_os = "windows")]
pub use windows::text;