Files
grafana/pkg/services/validations/service.go
T

13 lines
276 B
Go
Raw Normal View History

package validations
2021-02-03 20:47:45 +01:00
import (
"net/http"
)
type PluginRequestValidator interface {
// Validate performs a request validation based
// on the data source URL and some of the request
// attributes (headers, cookies, etc).
Validate(dsURL string, req *http.Request) error
}