Delete is a part of the kv.Client interface.
(ctx context.Context, key string)
| 297 | |
| 298 | // Delete is a part of the kv.Client interface. |
| 299 | func (m *MultiClient) Delete(ctx context.Context, key string) error { |
| 300 | _, kv := m.getPrimaryClient() |
| 301 | return kv.client.Delete(ctx, key) |
| 302 | } |
| 303 | |
| 304 | // CAS is a part of kv.Client interface. |
| 305 | func (m *MultiClient) CAS(ctx context.Context, key string, f func(in any) (out any, retry bool, err error)) error { |
nothing calls this directly
no test coverage detected