11 lines
185 B
Go
11 lines
185 B
Go
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
|
|
}
|