forked from TrueCloudLab/frostfs-api-go
10 lines
227 B
Go
10 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"
|
||
|
)
|