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

support for "rm" of objects and buckets

This commit is contained in:
Krishna Srinivas
2015-10-17 00:46:12 -07:00
parent 2a3b201457
commit b4c78a33ff
7 changed files with 242 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ type Client interface {
ShareUpload(bool, time.Duration, string) (map[string]string, *probe.Error)
GetObject(offset, length int64) (body io.ReadCloser, size int64, err *probe.Error)
PutObject(size int64, data io.Reader) *probe.Error
Remove() *probe.Error
// URL returns back internal url
URL() *URL