mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
16 lines
238 B
Go
16 lines
238 B
Go
|
|
package validations
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
)
|
||
|
|
|
||
|
|
type OSSPluginRequestValidator struct{}
|
||
|
|
|
||
|
|
func (*OSSPluginRequestValidator) Init() error {
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (*OSSPluginRequestValidator) Validate(string, *http.Request) error {
|
||
|
|
return nil
|
||
|
|
}
|