// version/version.go package version var Version string func init() { if Version == "" { Version = "0.0.0-dev" } }