5d11d8f556
NeoFS S3 Gate based on Minio RELEASE.2020-07-02T00-15-09Z code which distributed with Apache 2.0 license. This commit removes remaining minio code with that license. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
15 lines
261 B
Go
15 lines
261 B
Go
package api
|
|
|
|
type (
|
|
// ObjectRequest represents object request data.
|
|
ObjectRequest struct {
|
|
Bucket string
|
|
Object string
|
|
Method string
|
|
}
|
|
)
|
|
|
|
// Key used for Get/SetReqInfo.
|
|
type contextKeyType string
|
|
|
|
const ctxRequestInfo = contextKeyType("NeoFS-S3-GW")
|