| 322 | func (ns Nodes) Swap(i, j int) { ns[i], ns[j] = ns[j], ns[i] } |
| 323 | |
| 324 | type httpKeysAPI struct { |
| 325 | client httpClient |
| 326 | prefix string |
| 327 | } |
| 328 | |
| 329 | func (k *httpKeysAPI) Set(ctx context.Context, key, val string, opts *SetOptions) (*Response, error) { |
| 330 | act := &setAction{ |
nothing calls this directly
no outgoing calls
no test coverage detected