[#40] acl: move ACL types from neofs-api-go
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
5d2a913355
commit
9435f4171b
1 changed files with 15 additions and 0 deletions
15
acl/types.go
Normal file
15
acl/types.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package acl
|
||||
|
||||
const (
|
||||
// PublicBasicRule is a basic ACL value for public-read-write container.
|
||||
PublicBasicRule = 0x1FBFBFFF
|
||||
|
||||
// PrivateBasicRule is a basic ACL value for private container.
|
||||
PrivateBasicRule = 0x1C8C8CCC
|
||||
|
||||
// ReadOnlyBasicRule is a basic ACL value for public-read container.
|
||||
ReadOnlyBasicRule = 0x1FBF8CFF
|
||||
|
||||
// PublicAppendRule is a basic ACL value for public-append container.
|
||||
PublicAppendRule = 0x1FBF9FFF
|
||||
)
|
Loading…
Reference in a new issue