gui/pkg/clipboard/messages.go
Snider 7b8ed9df6f feat(clipboard): add clipboard core.Service with Platform interface and IPC
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 14:16:54 +00:00

11 lines
322 B
Go

// pkg/clipboard/messages.go
package clipboard
// QueryText reads the clipboard. Result: ClipboardContent
type QueryText struct{}
// TaskSetText writes text to the clipboard. Result: bool (success)
type TaskSetText struct{ Text string }
// TaskClear clears the clipboard. Result: bool (success)
type TaskClear struct{}