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

16 lines
267 B
Go
Raw Normal View History

2021-02-03 20:47:45 +01:00
package validations
import (
"net/http"
)
type OSSPluginRequestValidator struct{}
func (*OSSPluginRequestValidator) Validate(string, *http.Request) error {
2021-02-03 20:47:45 +01:00
return nil
}
func ProvideValidator() *OSSPluginRequestValidator {
return &OSSPluginRequestValidator{}
2021-02-03 20:47:45 +01:00
}