mirror of
https://github.com/ebrianne/adguard-exporter.git
synced 2025-01-23 21:31:52 +01:00
12 lines
161 B
Go
12 lines
161 B
Go
|
package adguard
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
const (
|
||
|
enabledStatus = "enabled"
|
||
|
)
|
||
|
|
||
|
type Stats struct {
|
||
|
AvgProcessingTime float64 `json:"avg_processing_time"`
|
||
|
}
|