(_ context.Context, img string, options client.ImageRemoveOptions)
| 51 | } |
| 52 | |
| 53 | func (cli *fakeClient) ImageRemove(_ context.Context, img string, options client.ImageRemoveOptions) (client.ImageRemoveResult, error) { |
| 54 | if cli.imageRemoveFunc != nil { |
| 55 | return cli.imageRemoveFunc(img, options) |
| 56 | } |
| 57 | return client.ImageRemoveResult{}, nil |
| 58 | } |
| 59 | |
| 60 | func (cli *fakeClient) ImagePush(_ context.Context, ref string, options client.ImagePushOptions) (client.ImagePushResponse, error) { |
| 61 | if cli.imagePushFunc != nil { |