Documentation ¶ Index ¶ Variables Constants ¶ This section is empty. Variables ¶ View Source var CheckMobile validator.Func = func(fl validator.FieldLevel) bool { mobile, ok := fl.Field().Interface().(string) if ok { l := len(mobile) if l != 11 { return false } return utils.IsNumber(mobile) } return false } Functions ¶ This section is empty. Types ¶ This section is empty. Source Files ¶ View all Source files validator.go Click to show internal directories. Click to hide internal directories.