func init() { rules.Add("NotEmpty", NotEmpty) }
func init() { rules.Add("MaxLength", MaxLength) }
func init() { rules.Add("NotZero", NotZero) }
func init() { rules.Add("MinLength", MinLength) }
func init() { rules.Add("Regexp", Regexp) }
func init() { rules.Add("GreaterThan", GreaterThan) }
func init() { rules.Add("URL", URL) }
func init() { rules.Add("NotZeroTime", NotZeroTime) }
func init() { rules.Add("Length", Length) }
func init() { rules.Add("LessThan", LessThan) }
func init() { rules.Add("UUID", UUID) }
func init() { rules.Add("Email", Email) }
func init() { rules.Add("Alpha", Alpha) }
func init() { rules.Add("Alphanumeric", Alphanumeric) }