mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-06 18:05:35 +00:00
828f19304b
API change. Update your code with gofmt rule and goimports: gofmt -r "system.ClipboardEvent -> clipboard.Event" goimports Signed-off-by: Inkeliz <inkeliz@inkeliz.com> Signed-off-by: Elias Naur <mail@eliasnaur.com>
11 lines
198 B
Go
11 lines
198 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
package clipboard
|
|
|
|
// Event is generated when the clipboard content is requested.
|
|
type Event struct {
|
|
Text string
|
|
}
|
|
|
|
func (Event) ImplementsEvent() {}
|