forked from TrueCloudLab/frostfs-api-go
12 lines
314 B
Go
12 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"
|
||
|
)
|