Initial commit
This commit is contained in:
15
identity/alias.go
Normal file
15
identity/alias.go
Normal file
@@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user