forked from TrueCloudLab/frostfs-api-go
ad0b01e892
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
11 lines
334 B
Go
11 lines
334 B
Go
package container
|
|
|
|
const (
|
|
// AttributeName is an attribute key that is commonly used to denote
|
|
// human-friendly name.
|
|
AttributeName = "Name"
|
|
|
|
// AttributeTimestamp is an attribute key that is commonly used to denote
|
|
// user-defined local time of container creation in Unix Timestamp format.
|
|
AttributeTimestamp = "Timestamp"
|
|
)
|