(_ context.Context, serviceID string, options client.ServiceUpdateOptions)
| 129 | } |
| 130 | |
| 131 | func (cli *fakeClient) ServiceUpdate(_ context.Context, serviceID string, options client.ServiceUpdateOptions) (client.ServiceUpdateResult, error) { |
| 132 | if cli.serviceUpdateFunc != nil { |
| 133 | return cli.serviceUpdateFunc(serviceID, options) |
| 134 | } |
| 135 | |
| 136 | return client.ServiceUpdateResult{}, nil |
| 137 | } |
| 138 | |
| 139 | func (cli *fakeClient) ServiceRemove(_ context.Context, serviceID string, _ client.ServiceRemoveOptions) (client.ServiceRemoveResult, error) { |
| 140 | if cli.serviceRemoveFunc != nil { |