1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00
any-sync/commonspace/object/tree/objecttree/signablecontent.go
2023-03-25 13:15:19 +01:00

12 lines
199 B
Go

package objecttree
import (
"github.com/anytypeio/any-sync/util/crypto"
)
type SignableChangeContent struct {
Data []byte
Key crypto.PrivKey
IsSnapshot bool
IsEncrypted bool
}