13 lines
440 B
Go
13 lines
440 B
Go
|
// 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"
|
||
|
tmplDirectory = "templates"
|
||
|
headerContentDisposition = "Content-Disposition"
|
||
|
contentTypeOctetStream = "application/octet-stream"
|
||
|
)
|