common/identity/alias.go

16 lines
250 B
Go
Raw Permalink Normal View History

2025-01-12 09:17:29 +01:00
package identity
import (
"regexp"
)
const (
aliasRegex = `^[a-zA-Z0-9]+$`
)
// IsValidAlias checks if the alias is a valid alias format
func IsValidAlias(alias string) bool {
match, _ := regexp.MatchString(aliasRegex, alias)
return match
}