2022-07-13 20:09:19 +03:00

13 lines
238 B
Go

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