1
0
mirror of https://github.com/minio/mc.git synced 2025-11-12 01:02:26 +03:00

Migrate to PresignedGetObject from PresignedGetPartialObject() as the latter was of no real use

This commit is contained in:
Harshavardhana
2015-08-21 20:39:22 -07:00
parent 0785fff42b
commit c992bb682f
6 changed files with 15 additions and 24 deletions

View File

@@ -35,7 +35,7 @@ type Client interface {
SetBucketACL(acl string) *probe.Error
// Object operations
Share(expires time.Duration, offset, length int64) (string, *probe.Error)
Share(expires time.Duration) (string, *probe.Error)
GetObject(offset, length int64) (body io.ReadCloser, size int64, err *probe.Error)
PutObject(size int64, data io.Reader) *probe.Error