mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
13 lines
243 B
Go
13 lines
243 B
Go
package objecttree
|
|
|
|
import (
|
|
"github.com/anytypeio/any-sync/util/keys/asymmetric/signingkey"
|
|
)
|
|
|
|
type SignableChangeContent struct {
|
|
Data []byte
|
|
Key signingkey.PrivKey
|
|
Identity []byte
|
|
IsSnapshot bool
|
|
IsEncrypted bool
|
|
}
|