(_ context.Context, opts client.ImagePruneOptions)
| 81 | } |
| 82 | |
| 83 | func (cli *fakeClient) ImagePrune(_ context.Context, opts client.ImagePruneOptions) (client.ImagePruneResult, error) { |
| 84 | if cli.imagePruneFunc != nil { |
| 85 | return cli.imagePruneFunc(opts) |
| 86 | } |
| 87 | return client.ImagePruneResult{}, nil |
| 88 | } |
| 89 | |
| 90 | func (cli *fakeClient) ImageLoad(_ context.Context, input io.Reader, options ...client.ImageLoadOption) (client.ImageLoadResult, error) { |
| 91 | if cli.imageLoadFunc != nil { |