This commit is contained in:
Bel LaPointe
2021-12-15 07:33:50 -07:00
parent bc8a0d82df
commit 44ce475100
5 changed files with 147 additions and 13 deletions

View File

@@ -21,6 +21,7 @@ const (
MINIO = Type(iota)
RCLONE = Type(iota)
MAPSTREAM = Type(iota)
YAML = Type(iota)
)
func (t Type) String() string {
@@ -37,6 +38,8 @@ func (t Type) String() string {
return "rclone"
case COCKROACH:
return "cockroach"
case YAML:
return "yaml"
case FILES:
return "files"
case BOLT: