[#172] v2/container: Define well-known system attributes

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-10-22 18:40:55 +03:00 committed by Leonard Lyubich
parent 7b212431df
commit 634f7e92e8

View file

@ -0,0 +1,9 @@
package container
// SysAttrPrefix is a prefix of key to system attribute.
const SysAttrPrefix = "__NEOFS__"
const (
// SysAttrSubnet is a string ID of container's storage subnet.
SysAttrSubnet = SysAttrPrefix + "SUBNET"
)