(context context.Context, key, value string, opts config.PutOptions)
| 44 | |
| 45 | type Client interface { |
| 46 | Put(context context.Context, key, value string, opts config.PutOptions) error |
| 47 | Get(context context.Context, key string, opts config.GetOptions) (*clientv3.GetResponse, error) |
| 48 | Delete(context context.Context, key string, opts config.DeleteOptions) (*clientv3.DeleteResponse, error) |
| 49 | Compact(context context.Context, rev int64, opts config.CompactOption) (*clientv3.CompactResponse, error) |
no outgoing calls