s3manager-web/internal/app/s3manager/s3manager.go

12 lines
410 B
Go
Raw Normal View History

2017-05-08 23:07:07 +02:00
// Package s3manager allows to interact with an S3 compatible storage.
package s3manager
2018-03-14 21:53:35 +01:00
// These are constants commonly used throughout the application.
2017-05-08 23:07:07 +02:00
const (
HeaderContentType = "Content-Type"
ContentTypeJSON = "application/json"
ContentTypeMultipartForm = "multipart/form-data"
headerContentDisposition = "Content-Disposition"
contentTypeOctetStream = "application/octet-stream"
)