mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
12 lines
234 B
Go
12 lines
234 B
Go
package aclchanges
|
|
|
|
import (
|
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/acl/aclchanges/pb"
|
|
)
|
|
|
|
type Change interface {
|
|
ProtoChange() *pb.ACLChange
|
|
DecryptedChangeContent() []byte
|
|
Signature() []byte
|
|
CID() string
|
|
}
|