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"`
|
||
|
}
|