zrok/controller/metrics2/model.go

13 lines
224 B
Go
Raw Normal View History

2023-03-15 17:47:26 +01:00
package metrics2
type ZitiEventJson string
type ZitiEventJsonSource interface {
Start(chan ZitiEventJson) (join chan struct{}, err error)
Stop()
}
type ZitiEventJsonSink interface {
Handle(event ZitiEventJson) error
}