From 4e1f9ae3e7864e791d6df2c215ca70bd1e42eaf6 Mon Sep 17 00:00:00 2001 From: Horus3 Date: Sun, 2 Aug 2015 00:16:24 +0200 Subject: Added multidomain support. --- imagestore/store.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'imagestore/store.go') 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 } -- cgit v1.2.3