pgweb/pkg/command/version.go

18 lines
317 B
Go
Raw Normal View History

package command
const (
2019-11-29 13:59:50 -06:00
// Version is the current Pgweb application version
2022-01-20 21:28:05 -06:00
Version = "0.11.10"
)
var (
2019-11-29 13:59:50 -06:00
// GitCommit contains the Git commit SHA for the binary
GitCommit string
2019-11-29 13:59:50 -06:00
// BuildTime contains the binary build time
BuildTime string
2019-11-29 13:59:50 -06:00
// GoVersion contains the build time Go version
2019-11-29 13:59:50 -06:00
GoVersion string
)