forked from TrueCloudLab/frostfs-s3-gw
fbd4a83602
closes #25 Signed-off-by: Evgeniy Kulikov <kim@nspcc.ru>
14 lines
377 B
Go
14 lines
377 B
Go
package layer
|
|
|
|
const (
|
|
// TODO should be replaced with well-known types from SDK
|
|
|
|
// ObjectName human readable name of the root object.
|
|
ObjectName = "filename"
|
|
|
|
// ContainerName human readable name of the container (`bucket`).
|
|
ContainerName = "dirname"
|
|
|
|
// LocallyCreationTime human readable creation time of the object / container.
|
|
LocallyCreationTime = "created_at"
|
|
)
|