woodpecker/model/event.go

20 lines
424 B
Go
Raw Normal View History

2016-09-28 01:30:28 +00:00
package model
2016-04-13 00:27:24 +00:00
// EventType defines the possible types of build events.
type EventType string
const (
Enqueued EventType = "enqueued"
Started EventType = "started"
Finished EventType = "finished"
Cancelled EventType = "cancelled"
)
// Event represents a build event.
type Event struct {
2016-09-28 01:30:28 +00:00
Type EventType `json:"type"`
Repo Repo `json:"repo"`
Build Build `json:"build"`
2017-04-02 14:13:26 +00:00
Proc Proc `json:"proc"`
}