10 lines
113 B
Go
10 lines
113 B
Go
|
package event
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Event struct {
|
||
|
Time time.Time
|
||
|
Error error
|
||
|
Payload map[string]string
|
||
|
}
|