11 lines
410 B
Go
11 lines
410 B
Go
// Package s3manager allows to interact with an S3 compatible storage.
|
|
package s3manager
|
|
|
|
// These are constants commonly used throughout the application.
|
|
const (
|
|
HeaderContentType = "Content-Type"
|
|
ContentTypeJSON = "application/json"
|
|
ContentTypeMultipartForm = "multipart/form-data"
|
|
headerContentDisposition = "Content-Disposition"
|
|
contentTypeOctetStream = "application/octet-stream"
|
|
)
|