2015-05-05 00:34:23 -05:00
|
|
|
package command
|
|
|
|
|
2018-12-13 22:35:43 -06:00
|
|
|
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"
|
2018-12-13 22:35:43 -06:00
|
|
|
)
|
2015-05-05 00:34:23 -05:00
|
|
|
|
|
|
|
var (
|
2019-11-29 13:59:50 -06:00
|
|
|
// GitCommit contains the Git commit SHA for the binary
|
2015-05-05 00:34:23 -05:00
|
|
|
GitCommit string
|
2019-11-29 13:59:50 -06:00
|
|
|
|
|
|
|
// BuildTime contains the binary build time
|
2015-05-05 00:34:23 -05:00
|
|
|
BuildTime string
|
2019-11-29 13:59:50 -06:00
|
|
|
|
2021-07-09 15:52:09 -04:00
|
|
|
// GoVersion contains the build time Go version
|
2019-11-29 13:59:50 -06:00
|
|
|
GoVersion string
|
2015-05-05 00:34:23 -05:00
|
|
|
)
|