mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2025-01-08 18:47:44 +01:00
11 lines
194 B
Go
11 lines
194 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"github.com/prometheus/client_golang/prometheus"
|
||
|
)
|
||
|
|
||
|
type routerOSCollector interface {
|
||
|
describe(ch chan<- *prometheus.Desc)
|
||
|
collect(ctx *collectorContext) error
|
||
|
}
|