Get returns all the labels for the given digest
(digest.Digest)
| 51 | type LabelStore interface { |
| 52 | // Get returns all the labels for the given digest |
| 53 | Get(digest.Digest) (map[string]string, error) |
| 54 | |
| 55 | // Set sets all the labels for a given digest |
| 56 | Set(digest.Digest, map[string]string) error |
no outgoing calls