zrok/controller/metrics2/model.go
2023-03-15 12:47:26 -04:00

13 lines
224 B
Go

package metrics2
type ZitiEventJson string
type ZitiEventJsonSource interface {
Start(chan ZitiEventJson) (join chan struct{}, err error)
Stop()
}
type ZitiEventJsonSink interface {
Handle(event ZitiEventJson) error
}