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

Revert "Update proto version"

This reverts commit 0822e08921.
This commit is contained in:
mcrakhman 2024-07-30 21:29:21 +02:00
parent 0822e08921
commit 3558639f8f
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B

View file

@ -29,12 +29,12 @@ var (
// ProtoVersion 2 - acl compatible version
// ProtoVersion 3 - acl with breaking changes / multiplayer
AclCompatibleVersion = uint32(2)
AclVersion = uint32(3)
ProtoVersion = uint32(4)
ProtoVersion = uint32(3)
NewSyncProtoVersion = uint32(4)
)
var (
compatibleVersions = []uint32{AclCompatibleVersion, AclVersion, ProtoVersion}
compatibleVersions = []uint32{AclCompatibleVersion, ProtoVersion, NewSyncProtoVersion}
)
func New() SecureService {