pgweb/pkg/command/version.go

18 lines
316 B
Go
Raw Normal View History

package command
const (
2019-11-29 13:59:50 -06:00
// Version is the current Pgweb application version
2021-07-07 19:11:42 -05:00
Version = "0.11.8"
)
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
)