impl sqlite

This commit is contained in:
Bel LaPointe
2026-02-20 12:50:11 -07:00
parent 736d446d40
commit 16f679fe34
6 changed files with 211 additions and 16 deletions

View File

@@ -20,6 +20,7 @@ const (
RCLONE = Type(iota)
MAPSTREAM = Type(iota)
YAML = Type(iota)
SQLITE = Type(iota)
)
func (t Type) String() string {
@@ -48,6 +49,8 @@ func (t Type) String() string {
return "cache"
case LEVELDB:
return "leveldb"
case SQLITE:
return "sqlite"
case MONGO:
return "mongo"
}