implement file tree

This commit is contained in:
Bel LaPointe
2020-02-13 07:30:41 -07:00
parent be25dee55d
commit 3ea5d7e284
4 changed files with 81 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ const (
REDIS = Type(iota)
DYNOMITE = Type(iota)
BOLT = Type(iota)
FILES = Type(iota)
COCKROACH = Type(iota)
CACHE = Type(iota)
LEVELDB = Type(iota)
@@ -33,6 +34,8 @@ func (t Type) String() string {
return "rclone"
case COCKROACH:
return "cockroach"
case FILES:
return "files"
case BOLT:
return "bolt"
case MINIO: