Documentation ¶
Index ¶
Constants ¶
View Source
const ( VersionMajor = 1 // Major version component of the current release VersionMinor = 2 // Minor version component of the current release VersionPatch = 1 // Patch version component of the current release )
Variables ¶
View Source
var Version = func() string { return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch) }()
View Source
var VersionUint = func() uint32 { return VersionMajor*1000000 + VersionMinor*1000 + VersionPatch }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.