2020-10-22 15:40:55 +00:00
|
|
|
package container
|
|
|
|
|
2020-10-22 16:10:42 +00:00
|
|
|
// SysAttributePrefix is a prefix of key to system attribute.
|
|
|
|
const SysAttributePrefix = "__NEOFS__"
|
2020-10-22 15:40:55 +00:00
|
|
|
|
|
|
|
const (
|
2020-10-22 16:10:42 +00:00
|
|
|
// SysAttributeSubnet is a string ID of container's storage subnet.
|
|
|
|
SysAttributeSubnet = SysAttributePrefix + "SUBNET"
|
2020-10-22 15:40:55 +00:00
|
|
|
)
|