clipboard.go 218 B

123456789
  1. package input
  2. // ClipboardEvent is a clipboard read event.
  3. type ClipboardEvent string
  4. // String returns the string representation of the clipboard event.
  5. func (e ClipboardEvent) String() string {
  6. return string(e)
  7. }