add comment to interfaces

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2016-03-16 11:52:24 +01:00
parent 73509ef227
commit 0440473c63

View File

@ -11,7 +11,7 @@ const (
type Registry interface {
Images() []Image
Image(ref string) Image // ref == image name w/o registry part
Lookup(term string) []Image // docker registry v1 only AFAICT
Lookup(term string) []Image // docker registry v1 only AFAICT, v2 can be built hacking with Images()
}
type Image interface {