(_ context.Context, volumeID string, options client.VolumeRemoveOptions)
| 44 | } |
| 45 | |
| 46 | func (c *fakeClient) VolumeRemove(_ context.Context, volumeID string, options client.VolumeRemoveOptions) (client.VolumeRemoveResult, error) { |
| 47 | if c.volumeRemoveFunc != nil { |
| 48 | return client.VolumeRemoveResult{}, c.volumeRemoveFunc(volumeID, options.Force) |
| 49 | } |
| 50 | return client.VolumeRemoveResult{}, nil |
| 51 | } |