woodpecker/model/event.go
2017-04-02 23:13:26 +09:00

20 lines
424 B
Go

package model
// 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 {
Type EventType `json:"type"`
Repo Repo `json:"repo"`
Build Build `json:"build"`
Proc Proc `json:"proc"`
}