Simple S3-like server for development purposes, written in Go
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Formatting

+4 -4
+4 -4
responses.go
··· 29 29 30 30 // https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html 31 31 type ListBucketResult struct { 32 - XMLName xml.Name `xml:"ListBucketResult"` 33 - Name string `xml:"Name"` 34 - Prefix string `xml:"Prefix"` 35 - Contents []Object `xml:"Contents"` 32 + XMLName xml.Name `xml:"ListBucketResult"` 33 + Name string `xml:"Name"` 34 + Prefix string `xml:"Prefix"` 35 + Contents []Object `xml:"Contents"` 36 36 }