Merge pull request #450 from sosedoff/include-go-version-into-info

Include go version into info response
This commit is contained in:
Dan Sosedoff 2019-12-04 20:40:02 -06:00 committed by GitHub
commit 61fc975ac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -472,6 +472,7 @@ func GetBookmarks(c *gin.Context) {
func GetInfo(c *gin.Context) {
successResponse(c, gin.H{
"version": command.Version,
"go_version": command.GoVersion,
"git_sha": command.GitCommit,
"build_time": command.BuildTime,
})