LamerAlert/event/event.go

10 lines
113 B
Go
Raw Normal View History

2019-12-24 12:20:27 +00:00
package event
import "time"
type Event struct {
Time time.Time
Error error
Payload map[string]string
}