mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-06 19:02:18 +08:00
11 lines
200 B
Go
11 lines
200 B
Go
package kv
|
|
|
|
import "go.etcd.io/etcd/clientv3"
|
|
|
|
type Base interface {
|
|
Load(key string) (string, error)
|
|
Save(key, value string) error
|
|
Remove(key string) error
|
|
Watch(key string) clientv3.WatchChan
|
|
}
|