mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
12 lines
199 B
Go
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
|
|
}
|