1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00
any-sync/acl/aclchanges/change.go
2022-07-13 19:17:50 +03:00

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
}