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

Rename to CompatibleVersion

This commit is contained in:
mcrakhman 2024-12-06 09:21:26 +01:00
parent e5d32cf59c
commit cfb2fca8b0
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B

View file

@ -30,12 +30,12 @@ var (
// ProtoVersion 3 - acl with breaking changes / multiplayer
// ProtoVersion 4 - new sync compatible version
// ProtoVersion 5 - sync with no entry space
NewSyncVersion = uint32(4)
ProtoVersion = uint32(5)
CompatibleVersion = uint32(4)
ProtoVersion = uint32(5)
)
var (
compatibleVersions = []uint32{NewSyncVersion, ProtoVersion}
compatibleVersions = []uint32{CompatibleVersion, ProtoVersion}
)
func New() SecureService {