Files
distributor/internal/app/app.go

11 lines
217 B
Go

package app
const Name = "distributor"
// Version can be replaced at build time with -ldflags "-X .../internal/app.Version=<value>".
var Version = "dev"
func VersionString() string {
return Name + " " + Version
}