| 8 | ) |
| 9 | |
| 10 | type prefixedKVClient struct { |
| 11 | prefix string |
| 12 | client Client |
| 13 | } |
| 14 | |
| 15 | // PrefixClient takes a KVClient and forces a prefix on all its operations. |
| 16 | func PrefixClient(client Client, prefix string) Client { |
nothing calls this directly
no outgoing calls
no test coverage detected