Files
PhatPhuckDave 3c5e991ec5 Add vendor
Specifically because I want to modify a dependency
2024-08-26 01:01:04 +02:00

10 lines
218 B
Go

package input
// ClipboardEvent is a clipboard read event.
type ClipboardEvent string
// String returns the string representation of the clipboard event.
func (e ClipboardEvent) String() string {
return string(e)
}