any-sync/aclchanges/change.go
2022-07-10 11:44:02 +02:00

11 lines
225 B
Go

package aclchanges
import "github.com/anytypeio/go-anytype-infrastructure-experiments/aclchanges/pb"
type Change interface {
ProtoChange() *pb.ACLChange
DecryptedChangeContent() []byte
Signature() []byte
CID() string
}