aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/object.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage/filesystem/object.go')
-rw-r--r--storage/filesystem/object.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/storage/filesystem/object.go b/storage/filesystem/object.go
index c6d5359..65fc6e0 100644
--- a/storage/filesystem/object.go
+++ b/storage/filesystem/object.go
@@ -238,6 +238,10 @@ func (tx *TxObjectStorage) Set(obj core.Object) (core.Hash, error) {
return core.ZeroHash, fmt.Errorf("not implemented yet")
}
+func (tx *TxObjectStorage) Get(core.ObjectType, core.Hash) (core.Object, error) {
+ return nil, fmt.Errorf("not implemented yet")
+}
+
func (tx *TxObjectStorage) Commit() error {
return fmt.Errorf("not implemented yet")
}