adam-gui/vendor/fyne.io/fyne/v2/clipboard.go
2024-04-29 19:13:50 +02:00

10 lines
228 B
Go

package fyne
// Clipboard represents the system clipboard interface
type Clipboard interface {
// Content returns the clipboard content
Content() string
// SetContent sets the clipboard content
SetContent(content string)
}