frostfs-api-go-pogpp/v2/container/attributes.go
Leonard Lyubich 634f7e92e8 [#172] v2/container: Define well-known system attributes
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-10-22 19:15:45 +03:00

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"
)