mirror of
https://github.com/omniscale/magnacarto.git
synced 2025-09-28 12:33:33 +02:00
12 lines
248 B
Go
12 lines
248 B
Go
package magnacarto
|
|
|
|
var Version string
|
|
|
|
// buidVersion gets replaced while building with
|
|
// go build -ldflags "-X github.com/omniscale/magnacarto.buildVersion 1234"
|
|
var buildVersion string
|
|
|
|
func init() {
|
|
Version = "0.1"
|
|
Version += buildVersion
|
|
}
|