From 6afcbc7ba57d80bacace21b6e73ca474dd8217ca Mon Sep 17 00:00:00 2001 From: Horus3 Date: Sat, 1 Aug 2015 23:56:26 +0200 Subject: Satisfy imagestore interface --- imagestore/gcsstore.go | 2 +- imagestore/s3store.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'imagestore') diff --git a/imagestore/gcsstore.go b/imagestore/gcsstore.go index 798d4eb..67da3d7 100644 --- a/imagestore/gcsstore.go +++ b/imagestore/gcsstore.go @@ -32,7 +32,7 @@ func (this *GCSImageStore) Exists(obj *StoreObject) (bool, error) { return true, nil } -func (this *GCSImageStore) Save(src string, obj *StoreObject) (*StoreObject, error) { +func (this *GCSImageStore) Save(src string, obj *StoreObject, url string) (*StoreObject, error) { data, err := ioutil.ReadFile(src) if err != nil { log.Printf("error on read file: %s", err) diff --git a/imagestore/s3store.go b/imagestore/s3store.go index e023fcc..c31a45f 100644 --- a/imagestore/s3store.go +++ b/imagestore/s3store.go @@ -31,7 +31,7 @@ func (this *S3ImageStore) Exists(obj *StoreObject) (bool, error) { return (response.StatusCode == 200), nil } -func (this *S3ImageStore) Save(src string, obj *StoreObject) (*StoreObject, error) { +func (this *S3ImageStore) Save(src string, obj *StoreObject, url string) (*StoreObject, error) { bucket := this.client.Bucket(this.bucketName) data, err := ioutil.ReadFile(src) -- cgit v1.2.3