[#199] sdk/acl: Add comments for basic ACL constants

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-11-16 16:37:40 +03:00 committed by Alex Vanin
parent 154e09f4e4
commit 2b3502d6c0

View file

@ -1,7 +1,12 @@
package acl
const (
PublicBasicRule = 0x1FFFFFFF
PrivateBasicRule = 0x18888888
// PublicBasicRule is a basic ACL value for public container.
PublicBasicRule = 0x1FFFFFFF
// PrivateBasicRule is a basic ACL value for private container.
PrivateBasicRule = 0x18888888
// ReadOnlyBasicRule is a basic ACL value for read-only container.
ReadOnlyBasicRule = 0x1FFF88FF
)