Implement minio

This commit is contained in:
Bel LaPointe
2019-03-20 09:55:31 -06:00
parent b7a231feaf
commit 4e596f683b
3 changed files with 62 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ const (
MEMCACHE = Type(iota)
MEMCACHECLUSTER = Type(iota)
MONGO = Type(iota)
MINIO = Type(iota)
)
func (t Type) String() string {
@@ -22,6 +23,8 @@ func (t Type) String() string {
return "map"
case BOLT:
return "bolt"
case MINIO:
return "minio"
case CACHE:
return "cache"
case LEVELDB: