(ctx context.Context, key string, value []byte, opts homekv.KVSetOptions)
| 43 | type signatureKVClient interface { |
| 44 | KVGet(ctx context.Context, key string) ([]byte, bool, error) |
| 45 | KVSet(ctx context.Context, key string, value []byte, opts homekv.KVSetOptions) (bool, error) |
| 46 | KVDel(ctx context.Context, keys ...string) (int64, error) |
| 47 | KVExpire(ctx context.Context, key string, ttl time.Duration) (bool, error) |
| 48 | } |
no outgoing calls