featurebase/version.go
2017-04-21 10:14:21 -05:00

17 lines
299 B
Go

package pilosa
var Version = "v0.0.0"
var BuildTime = "not recorded"
// ldflags works without this - removing it allows TestHandler_Version to work simply
func SetupVersionBuild() {
/*
if Version == "" {
Version = "v0.0.0"
}
if BuildTime == "" {
BuildTime = "not recorded"
}
*/
}