2023-04-17 08:54:03 +00:00
|
|
|
package versioning
|
|
|
|
|
|
|
|
type ConnectionParamVersion int
|
|
|
|
|
|
|
|
const (
|
|
|
|
ConnectionParamsV1 ConnectionParamVersion = iota + 1
|
2023-08-22 16:18:14 +00:00
|
|
|
ConnectionParamsV2
|
2023-04-17 08:54:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type LocalPairingVersion int
|
|
|
|
|
|
|
|
const (
|
|
|
|
LocalPairingV1 LocalPairingVersion = iota + 1
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2023-08-22 16:18:14 +00:00
|
|
|
LatestConnectionParamVer = ConnectionParamsV2
|
2023-04-17 08:54:03 +00:00
|
|
|
LatestLocalPairingVer = LocalPairingV1
|
|
|
|
)
|