codetether-agent 4.7.0-a-002.4

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Clipboard backend selected by platform.

#[cfg(windows)]
mod windows;
#[cfg(windows)]
pub use windows::{get_clipboard_text, set_clipboard_text};

#[cfg(not(windows))]
/// Read plain text from the Windows clipboard backend.
pub fn get_clipboard_text() -> Option<String> {
    None
}

#[cfg(not(windows))]
/// Write plain text to the Windows clipboard backend.
pub fn set_clipboard_text(_text: &str) -> Option<()> {
    None
}