frostfs-api-go/pkg/container/wellknown_attributes.go
Leonard Lyubich 4357430e0f [#172] sdk/container: Define well-known application attributes
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-10-22 19:15:45 +03:00

11 lines
314 B
Go

package container
const (
// AttrName is an attribute key that is commonly used to denote
// human-friendly name.
AttrName = "Name"
// AttrTimestamp is an attribute key that is commonly used to denote
// user-defined local time of container creation in Unix Timestamp format.
AttrTimestamp = "Timestamp"
)