| 172 | } |
| 173 | |
| 174 | type memoryLabelStore struct { |
| 175 | l sync.Mutex |
| 176 | labels map[digest.Digest]map[string]string |
| 177 | } |
| 178 | |
| 179 | func newMemoryLabelStore() local.LabelStore { |
| 180 | return &memoryLabelStore{ |
nothing calls this directly
no outgoing calls
no test coverage detected