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
|
|
}
|