mirror of
https://github.com/openziti/zrok.git
synced 2024-12-01 20:43:51 +01:00
13 lines
224 B
Go
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
|
|
}
|