(ctx context.Context, out progress.Output, desc ocispec.Descriptor)
| 264 | } |
| 265 | |
| 266 | func (p *pullProgress) finished(ctx context.Context, out progress.Output, desc ocispec.Descriptor) { |
| 267 | if c8dimages.IsLayerType(desc.MediaType) { |
| 268 | p.layers = append(p.layers, desc) |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | type pushProgress struct { |
| 273 | Tracker docker.StatusTracker |