Implement list and fix test

This commit is contained in:
bel
2019-06-21 17:57:00 -06:00
parent ade973d19d
commit 52479ed8a0
12 changed files with 161 additions and 29 deletions

View File

@@ -9,6 +9,7 @@ type Type int
const (
MAP = Type(iota)
REDIS = Type(iota)
DYNOMITE = Type(iota)
BOLT = Type(iota)
COCKROACH = Type(iota)
CACHE = Type(iota)
@@ -21,6 +22,8 @@ const (
func (t Type) String() string {
switch t {
case DYNOMITE:
return "dynomite"
case REDIS:
return "redis"
case MAP: