added IsValidNamespace function
This commit is contained in:
parent
0fc0cfc6d2
commit
298c996e54
1 changed files with 10 additions and 0 deletions
|
@ -251,6 +251,16 @@ func (n Name) DisplayShortest() string {
|
|||
return sb.String()
|
||||
}
|
||||
|
||||
func IsValidNamespace(namespace string) bool {
|
||||
name := Name{
|
||||
Host: "h",
|
||||
Model: "m",
|
||||
Namespace: namespace,
|
||||
Tag: "t",
|
||||
}
|
||||
return name.IsValid()
|
||||
}
|
||||
|
||||
// IsValid reports whether all parts of the name are present and valid. The
|
||||
// digest is a special case, and is checked for validity only if present.
|
||||
func (n Name) IsValid() bool {
|
||||
|
|
Loading…
Reference in a new issue