(_ context.Context, options client.ImageListOptions)
| 95 | } |
| 96 | |
| 97 | func (cli *fakeClient) ImageList(_ context.Context, options client.ImageListOptions) (client.ImageListResult, error) { |
| 98 | if cli.imageListFunc != nil { |
| 99 | return cli.imageListFunc(options) |
| 100 | } |
| 101 | return client.ImageListResult{}, nil |
| 102 | } |
| 103 | |
| 104 | func (cli *fakeClient) ImageInspect(_ context.Context, img string, _ ...client.ImageInspectOption) (client.ImageInspectResult, error) { |
| 105 | if cli.imageInspectFunc != nil { |