# README
验证器
https://github.com/go-playground/validator
type User struct {
FirstName string `validate:"required"`
LastName string `validate:"required"`
Age uint8 `validate:"gte=0,lte=130"`
Email string `validate:"required,email"`
FavouriteColor string `validate:"iscolor"` // alias for 'hexcolor|rgb|rgba|hsl|hsla'
Addresses []*Address `validate:"required,dive,required"` // a person can have a home and cottage...
}
# Packages
No description provided by the author
# Functions
No description provided by the author
# Variables
No description provided by the author
# Structs
No description provided by the author
# Interfaces
No description provided by the author