(ctx context.Context, options client.VolumeListOptions)
| 93 | } |
| 94 | |
| 95 | func (cli *fakeClient) VolumeList(ctx context.Context, options client.VolumeListOptions) (client.VolumeListResult, error) { |
| 96 | if cli.volumeListFunc != nil { |
| 97 | return cli.volumeListFunc(ctx, options) |
| 98 | } |
| 99 | return client.VolumeListResult{}, nil |
| 100 | } |