forked from TrueCloudLab/frostfs-http-gw
11 lines
330 B
Go
11 lines
330 B
Go
|
package utils
|
||
|
|
||
|
const (
|
||
|
UserAttributeHeaderPrefix = "X-Attribute-"
|
||
|
SystemAttributePrefix = "__NEOFS__"
|
||
|
|
||
|
ExpirationDurationAttr = SystemAttributePrefix + "EXPIRATION_DURATION"
|
||
|
ExpirationTimestampAttr = SystemAttributePrefix + "EXPIRATION_TIMESTAMP"
|
||
|
ExpirationRFC3339Attr = SystemAttributePrefix + "EXPIRATION_RFC3339"
|
||
|
)
|