(_ context.Context, images []string, options ...client.ImageSaveOption)
| 44 | } |
| 45 | |
| 46 | func (cli *fakeClient) ImageSave(_ context.Context, images []string, options ...client.ImageSaveOption) (client.ImageSaveResult, error) { |
| 47 | if cli.imageSaveFunc != nil { |
| 48 | return cli.imageSaveFunc(images, options...) |
| 49 | } |
| 50 | return http.NoBody, nil |
| 51 | } |
| 52 | |
| 53 | func (cli *fakeClient) ImageRemove(_ context.Context, img string, options client.ImageRemoveOptions) (client.ImageRemoveResult, error) { |
| 54 | if cli.imageRemoveFunc != nil { |