[#40] acl: move ACL types from neofs-api-go

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
remotes/fyrchik/master
Evgenii Stratonikov 2021-10-26 14:40:49 +03:00 committed by Alex Vanin
parent 5d2a913355
commit 9435f4171b
1 changed files with 15 additions and 0 deletions

15
acl/types.go 100644
View 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
)