Use Backend type for stores
Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
This commit is contained in:
parent
e2061c9708
commit
fcb98254b1
1 changed files with 3 additions and 3 deletions
|
@ -11,11 +11,11 @@ type Backend string
|
|||
|
||||
const (
|
||||
// CONSUL backend
|
||||
CONSUL = "consul"
|
||||
CONSUL Backend = "consul"
|
||||
// ETCD backend
|
||||
ETCD = "etcd"
|
||||
ETCD Backend = "etcd"
|
||||
// ZK backend
|
||||
ZK = "zk"
|
||||
ZK Backend = "zk"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
Loading…
Add table
Reference in a new issue