mirror of
https://github.com/openziti/zrok.git
synced 2025-06-08 02:48:47 +02:00
11 lines
181 B
Go
11 lines
181 B
Go
package metrics
|
|
|
|
type Source interface {
|
|
Start(chan map[string]interface{}) (chan struct{}, error)
|
|
Stop()
|
|
}
|
|
|
|
type Ingester interface {
|
|
Ingest(msg map[string]interface{}) error
|
|
}
|