aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/object.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-09-08 23:58:41 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-09-08 23:58:41 +0200
commit3b1baea2dd9353f42b3a9d93f6bc92ecbe9f4f01 (patch)
treed255b7e6edbcbaba1f98cf0c666a82c0f9750019 /storage/filesystem/object.go
parent2293a3dbda0a96f5cbac851bb73e1e675417e4f3 (diff)
downloadgo-git-3b1baea2dd9353f42b3a9d93f6bc92ecbe9f4f01.tar.gz
format: packfile based on ObjectStorage and CRC32 calculation
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")
}