List is a part of the kv.Client interface.
(ctx context.Context, prefix string)
| 285 | |
| 286 | // List is a part of the kv.Client interface. |
| 287 | func (m *MultiClient) List(ctx context.Context, prefix string) ([]string, error) { |
| 288 | _, kv := m.getPrimaryClient() |
| 289 | return kv.client.List(ctx, prefix) |
| 290 | } |
| 291 | |
| 292 | // Get is a part of kv.Client interface. |
| 293 | func (m *MultiClient) Get(ctx context.Context, key string) (any, error) { |
nothing calls this directly
no test coverage detected