mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
22 lines
425 B
Go
22 lines
425 B
Go
package list
|
|
|
|
import (
|
|
"github.com/anyproto/any-sync/commonspace/object/acl/aclrecordproto"
|
|
"github.com/anyproto/any-sync/util/crypto"
|
|
)
|
|
|
|
type AclRecord struct {
|
|
Id string
|
|
PrevId string
|
|
ReadKeyId string
|
|
Timestamp int64
|
|
Data []byte
|
|
Identity crypto.PubKey
|
|
Model interface{}
|
|
Signature []byte
|
|
}
|
|
|
|
type AclUserState struct {
|
|
PubKey crypto.PubKey
|
|
Permissions aclrecordproto.AclUserPermissions
|
|
}
|