(ctx context.Context, name string, options client.ConfigRemoveOptions)
| 36 | } |
| 37 | |
| 38 | func (c *fakeClient) ConfigRemove(ctx context.Context, name string, options client.ConfigRemoveOptions) (client.ConfigRemoveResult, error) { |
| 39 | if c.configRemoveFunc != nil { |
| 40 | return c.configRemoveFunc(ctx, name, options) |
| 41 | } |
| 42 | return client.ConfigRemoveResult{}, nil |
| 43 | } |