MCPcopy
hub / github.com/minio/minio-go / Header

Method Header

api-append-object.go:52–58  ·  view source on GitHub ↗

Header returns the custom header for AppendObject API

()

Source from the content-addressed store, hash-verified

50
51// Header returns the custom header for AppendObject API
52func (opts AppendObjectOptions) Header() (header http.Header) {
53 header = make(http.Header)
54 for k, v := range opts.customHeaders {
55 header[k] = v
56 }
57 return header
58}
59
60func (opts *AppendObjectOptions) setWriteOffset(offset int64) {
61 if len(opts.customHeaders) == 0 {

Callers 1

appendObjectDoMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected