[#172] sdk/container: Define well-known application attributes

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-10-22 18:41:34 +03:00 committed by Leonard Lyubich
parent 342eeb47a8
commit 4357430e0f

View file

@ -0,0 +1,11 @@
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"
)