mirror of
https://github.com/openziti/zrok.git
synced 2024-12-02 04:54:00 +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
|
||
|
}
|