mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
8 lines
112 B
Go
8 lines
112 B
Go
package validator
|
|
|
|
import "context"
|
|
|
|
type Service interface {
|
|
ShouldBeReported(context.Context, string) bool
|
|
}
|