added etcd support
This commit is contained in:
parent
59d44932a4
commit
85a8ba23bd
21 changed files with 767 additions and 247 deletions
18
pkg/etcd/kv.go
Normal file
18
pkg/etcd/kv.go
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
package etcd
|
||||
|
||||
//TODO
|
||||
|
||||
type kv struct {
|
||||
}
|
||||
|
||||
func (kv *kv) Get(k string) []byte {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (kv *kv) Set(k string, v []byte) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (kv *kv) Delete(k string) error {
|
||||
return nil
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue