mirror of
https://github.com/openziti/zrok.git
synced 2025-01-09 07:28:15 +01:00
11 lines
148 B
Go
11 lines
148 B
Go
package metrics
|
|
|
|
type Source interface {
|
|
Start() (chan struct{}, error)
|
|
Stop()
|
|
}
|
|
|
|
type Ingester interface {
|
|
Ingest(msg map[string]interface{})
|
|
}
|