aboutsummaryrefslogtreecommitdiff
path: root/storage/storage.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage/storage.go')
-rw-r--r--storage/storage.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/storage/storage.go b/storage/storage.go
index 45b1973..0729fe1 100644
--- a/storage/storage.go
+++ b/storage/storage.go
@@ -2,6 +2,7 @@ package storage
import (
"bytes"
+ "code.laria.me/petrific/config"
"code.laria.me/petrific/objects"
"errors"
"fmt"
@@ -17,6 +18,14 @@ type Storage interface {
Has(id objects.ObjectId) (bool, error)
Set(id objects.ObjectId, typ objects.ObjectType, raw []byte) error
List(typ objects.ObjectType) ([]objects.ObjectId, error)
+
+ Close() error
+}
+
+type CreateStorageFromConfig func(conf config.Config, name string) (Storage, error)
+
+var StorageTypes = map[string]CreateStorageFromConfig{
+ "memory": MemoryStorageFromConfig,
}
func SetObject(s Storage, o objects.RawObject) (id objects.ObjectId, err error) {