1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-02-10 18:31:20 +02:00
woodpecker/pkg/bus/bus.go

20 lines
237 B
Go
Raw Normal View History

package bus
const (
EventRepo = "repo"
EventUser = "user"
EventAgent = "agent"
)
type Event struct {
Kind string
Name string
Msg []byte
}
type Bus interface {
Subscribe(chan *Event)
Unsubscribe(chan *Event)
Send(*Event)
}