fckeuspy-go/vendor/fyne.io/fyne/v2/clipboard.go

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)
}