1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

coordinatorproto: ErrSpaceNotShareable

This commit is contained in:
Sergey Cherepanov 2024-04-03 14:23:16 +02:00
parent 036e4f85f7
commit e658cff209
No known key found for this signature in database
GPG key ID: 87F8EDE8FBDF637C
3 changed files with 119 additions and 114 deletions

View file

@ -19,4 +19,5 @@ var (
ErrForbidden = errGroup.Register(errors.New("forbidden"), uint64(ErrorCodes_Forbidden))
ErrAclHeadIsMissing = errGroup.Register(errors.New("acl head is missing"), uint64(ErrorCodes_AclHeadIsMissing))
ErrAclNonEmpty = errGroup.Register(errors.New("acl is not empty"), uint64(ErrorCodes_AclNonEmpty))
ErrSpaceNotShareable = errGroup.Register(errors.New("space not shareable"), uint64(ErrorCodes_SpaceNotShareable))
)