1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

Add diffcontainer once again

This commit is contained in:
Mikhail Rakhmanov 2025-03-21 12:44:14 +01:00
parent cfc54ad61f
commit b81b79b75b
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
9 changed files with 92 additions and 37 deletions

View file

@ -104,18 +104,21 @@ func (SpaceSubscriptionAction) EnumDescriptor() ([]byte, []int) {
type DiffType int32
const (
DiffType_Initial DiffType = 0
DiffType_Precalculated DiffType = 1
DiffType_Initial DiffType = 0
DiffType_V1 DiffType = 1
DiffType_V2 DiffType = 2
)
var DiffType_name = map[int32]string{
0: "Initial",
1: "Precalculated",
1: "V1",
2: "V2",
}
var DiffType_value = map[string]int32{
"Initial": 0,
"Precalculated": 1,
"Initial": 0,
"V1": 1,
"V2": 2,
}
func (x DiffType) String() string {