summaryrefslogtreecommitdiff
path: root/objectstore/objecstore.go
diff options
context:
space:
mode:
Diffstat (limited to 'objectstore/objecstore.go')
-rw-r--r--objectstore/objecstore.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/objectstore/objecstore.go b/objectstore/objecstore.go
index f4985c9..7cbb481 100644
--- a/objectstore/objecstore.go
+++ b/objectstore/objecstore.go
@@ -9,7 +9,7 @@ import (
)
type ObjectStore interface {
- CreateObject(bucketId string, objectId string, content string) error
+ CreateObject(bucketId string, objectId string, content []byte) error
GetObject(bucketId string, objectId string) (string, error)
DeleteObject(bucketId string, objectId string) error
}