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