[#172] sdk/container: Define well-known application attributes
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
342eeb47a8
commit
4357430e0f
1 changed files with 11 additions and 0 deletions
11
pkg/container/wellknown_attributes.go
Normal file
11
pkg/container/wellknown_attributes.go
Normal 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"
|
||||
)
|
Loading…
Reference in a new issue