xmnt/blk/uuid.go

10 lines
170 B
Go
Raw Normal View History

2023-03-04 14:10:57 +09:00
package blk
import "regexp"
var blkUuidPattern = regexp.MustCompile("^[0-9a-zA-Z-]+$")
func IsValidUUID(uuid string) bool {
return blkUuidPattern.MatchString(uuid)
}