Files
go-worm/lib/clipmon/event.go
T

11 lines
185 B
Go
Raw Normal View History

package clipmon
import "time"
type Event struct {
Time time.Time
Kind string // "text" or "image"
Text string
ImagePath string // relative to clipboard dir, e.g. images/abc.png
}