19 lines
303 B
Go
19 lines
303 B
Go
/*
|
|
* Copyright 2026 Oleg Borodin <onborodin@gmail.com>
|
|
*
|
|
*
|
|
*/
|
|
|
|
package repocli
|
|
|
|
import (
|
|
"regexp"
|
|
)
|
|
|
|
const uuidRegex = `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$`
|
|
|
|
func isUUID(src string) bool {
|
|
re := regexp.MustCompile(uuidRegex)
|
|
return re.MatchString(src)
|
|
}
|