7 lines
278 B
Go
7 lines
278 B
Go
// Package buildinfo exposes release metadata injected by the build pipeline.
|
|
package buildinfo
|
|
|
|
// Version identifies this Weatherreporter build. Release builds replace the
|
|
// development value with their semantic version tag through the Go linker.
|
|
var Version = "development"
|