mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-11 10:10:46 +08:00
13 lines
315 B
Go
13 lines
315 B
Go
package controller
|
|
|
|
import (
|
|
"errors"
|
|
"regexp"
|
|
)
|
|
|
|
var errInvalidExtClientID = errors.New("ext client ID must be alphanumderic and/or dashes")
|
|
|
|
// allow only dashes and alphaneumeric for ext client and node names
|
|
func validName(name string) bool {
|
|
return regexp.MustCompile("^[a-zA-Z0-9-]+$").MatchString(name)
|
|
}
|