| 44 | } |
| 45 | |
| 46 | type Store struct { |
| 47 | imageName string |
| 48 | imageLabels map[string]string |
| 49 | platforms []ocispec.Platform |
| 50 | allMetadata bool |
| 51 | labelMap func(ocispec.Descriptor) []string |
| 52 | manifestLimit int |
| 53 | |
| 54 | // extraReferences are used to store or lookup multiple references |
| 55 | extraReferences []Reference |
| 56 | |
| 57 | unpacks []transfer.UnpackConfiguration |
| 58 | } |
| 59 | |
| 60 | // Reference is used to create or find a reference for an image |
| 61 | type Reference struct { |
nothing calls this directly
no outgoing calls
no test coverage detected