summaryrefslogtreecommitdiff
path: root/imagestore/store.go
diff options
context:
space:
mode:
Diffstat (limited to 'imagestore/store.go')
-rw-r--r--imagestore/store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/imagestore/store.go b/imagestore/store.go
index a58d1ff..97aaa1d 100644
--- a/imagestore/store.go
+++ b/imagestore/store.go
@@ -1,13 +1,13 @@
package imagestore
type ImageStore interface {
- Save(src string, obj *StoreObject) (*StoreObject, error)
+ Save(src string, obj *StoreObject, url string) (*StoreObject, error)
Exists(obj *StoreObject) (bool, error)
}
type ImageStores []ImageStore
-func (this *ImageStores) Save(src string, obj *StoreObject) {
+func (this *ImageStores) Save(src string, obj *StoreObject, url string) {
// TODO
}