13 lines
212 B
Go
13 lines
212 B
Go
package kv
|
|
|
|
import "github.com/abronan/valkeyrie/store"
|
|
|
|
// Config KV configuration.
|
|
type Config struct {
|
|
Backend store.Backend
|
|
Prefix string
|
|
Endpoints []string
|
|
Watch bool
|
|
Options *store.Config
|
|
}
|