提供文件上传及静态服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
441 B

package utils
var (
LoginVerify = Rules{"Email": {NotEmpty()}, "Password": {NotEmpty()}}
RegisterVerify = Rules{"Email": {NotEmpty()}, "Captcha": {NotEmpty()}, "Password": {NotEmpty()}}
EmailVerity = Rules{"Email": {NotEmpty()}}
EmailCheckVerity = Rules{"Email": {NotEmpty()}, "Captcha": {NotEmpty()}}
ForgetPasswordVerify = Rules{"Email": {NotEmpty()}, "NewPassword": {NotEmpty()}, "Auth": {NotEmpty()}}
)