(_ context.Context, options client.VolumeListOptions)
| 30 | } |
| 31 | |
| 32 | func (c *fakeClient) VolumeList(_ context.Context, options client.VolumeListOptions) (client.VolumeListResult, error) { |
| 33 | if c.volumeListFunc != nil { |
| 34 | return c.volumeListFunc(options) |
| 35 | } |
| 36 | return client.VolumeListResult{}, nil |
| 37 | } |
| 38 | |
| 39 | func (c *fakeClient) VolumePrune(_ context.Context, opts client.VolumePruneOptions) (client.VolumePruneResult, error) { |
| 40 | if c.volumePruneFunc != nil { |