16 lines
477 B
Go
16 lines
477 B
Go
package mxgateway
|
|
|
|
const (
|
|
// ClientVersion identifies this Go client scaffold before package releases
|
|
// assign semantic versions.
|
|
ClientVersion = "0.1.0-dev"
|
|
|
|
// GatewayProtocolVersion matches GatewayContractInfo.GatewayProtocolVersion
|
|
// in the shared .NET contracts.
|
|
GatewayProtocolVersion uint32 = 1
|
|
|
|
// WorkerProtocolVersion matches GatewayContractInfo.WorkerProtocolVersion
|
|
// and is exposed for fake-worker and parity tests.
|
|
WorkerProtocolVersion uint32 = 1
|
|
)
|