Compare commits

...

2 Commits

View File

@ -29,5 +29,5 @@ func UuidValidate(uuid string) error {
func isLetter(r rune) bool { func isLetter(r rune) bool {
l := unicode.ToLower(r) l := unicode.ToLower(r)
return (l >= 'a' && l <= 'z') return (l >= 'a' && l <= 'f')
} }