634f7e92e8
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
9 lines
227 B
Go
9 lines
227 B
Go
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"
|
|
)
|