grafana/pkg/infra/usagestats/validator/service.go
2023-03-23 19:19:19 +02:00

8 lines
112 B
Go

package validator
import "context"
type Service interface {
ShouldBeReported(context.Context, string) bool
}