command_profile_response.go
413 字节
package auth
import (
"fmt"
"github.com/astaxie/beego/validation"
)
type ProfileResponse struct {
}
func (ProfileResponse *ProfileResponse) ValidateCommand() error {
valid := validation.Validation{}
b, err := valid.Valid(ProfileResponse)
if err != nil {
return err
}
if !b {
for _, validErr := range valid.Errors {
return fmt.Errorf("%s %s", validErr.Key, validErr.Message)
}
}
return nil
}