frostfs-s3-gw/api/reqinfo.go
Alex Vanin 5d11d8f556 [#264] Remove minio code distributed with Apache 2.0 license
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>
2021-09-20 10:38:28 +03:00

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")