Adding utility functions - IsNameOnly and WithDefaultTag

Signed-off-by: Nishant Totla <nishanttotla@gmail.com>
This commit is contained in:
Nishant Totla 2016-11-11 12:07:27 -08:00
parent cb98aa744b
commit 2caeb6192a
No known key found for this signature in database
GPG key ID: 7EA5781C9B3D0C19
2 changed files with 34 additions and 0 deletions

12
reference/helpers.go Normal file
View file

@ -0,0 +1,12 @@
package reference
// IsNameOnly returns true if reference only contains a repo name.
func IsNameOnly(ref Named) bool {
if _, ok := ref.(NamedTagged); ok {
return false
}
if _, ok := ref.(Canonical); ok {
return false
}
return true
}