2017-05-08 23:07:07 +02:00
|
|
|
// Package s3manager allows to interact with an S3 compatible storage.
|
|
|
|
package s3manager
|
|
|
|
|
|
|
|
// Constants commonly used throughout the application.
|
|
|
|
const (
|
|
|
|
HeaderContentType = "Content-Type"
|
|
|
|
ContentTypeJSON = "application/json"
|
|
|
|
ContentTypeMultipartForm = "multipart/form-data"
|
|
|
|
headerContentDisposition = "Content-Disposition"
|
|
|
|
contentTypeOctetStream = "application/octet-stream"
|
2017-05-25 18:33:44 +02:00
|
|
|
tmplDirectory = "templates"
|
2017-05-08 23:07:07 +02:00
|
|
|
)
|