From 4357430e0f0be55caf1bfa3dd62449594a797e55 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Thu, 22 Oct 2020 18:41:34 +0300 Subject: [PATCH] [#172] sdk/container: Define well-known application attributes Signed-off-by: Leonard Lyubich --- pkg/container/wellknown_attributes.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pkg/container/wellknown_attributes.go diff --git a/pkg/container/wellknown_attributes.go b/pkg/container/wellknown_attributes.go new file mode 100644 index 0000000..143be14 --- /dev/null +++ b/pkg/container/wellknown_attributes.go @@ -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" +)