(ctx context.Context)
| 175 | } |
| 176 | |
| 177 | func (i *image) Size(ctx context.Context) (int64, error) { |
| 178 | return usage.CalculateImageUsage(ctx, i.i, i.client.ContentStore(), usage.WithManifestLimit(i.platform, 1), usage.WithManifestUsage()) |
| 179 | } |
| 180 | |
| 181 | func (i *image) Usage(ctx context.Context, opts ...UsageOpt) (int64, error) { |
| 182 | var config usageOptions |
nothing calls this directly
no test coverage detected