mirror of
https://github.com/minio/minio.git
synced 2025-11-21 02:09:08 -05:00
listMultipart: implement support for marker. (#1313)
This commit is contained in:
committed by
Harshavardhana
parent
30b0b4deba
commit
caa35f68fa
@@ -16,10 +16,7 @@
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"time"
|
||||
)
|
||||
import "time"
|
||||
|
||||
// BucketInfo - bucket name and create date
|
||||
type BucketInfo struct {
|
||||
@@ -107,6 +104,5 @@ func (a completedParts) Less(i, j int) bool { return a[i].PartNumber < a[j].Part
|
||||
|
||||
// completeMultipartUpload container for completing multipart upload
|
||||
type completeMultipartUpload struct {
|
||||
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ CompleteMultipartUpload" json:"-"`
|
||||
Parts []completePart `xml:"Part"`
|
||||
Parts []completePart `xml:"Part"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user