Fix cli build param ver (#758)

Co-authored-by: Igor Gov <igor.govorov1@gmail.com>
This commit is contained in:
Igor Gov
2022-02-06 20:35:41 +02:00
committed by GitHub
parent 379885845b
commit bd253e1ff7
14 changed files with 32 additions and 32 deletions

View File

@@ -9,6 +9,6 @@ import (
)
func GetVersion(c *gin.Context) {
resp := shared.VersionResponse{SemVer: version.SemVer}
resp := shared.VersionResponse{Ver: version.Ver}
c.JSON(http.StatusOK, resp)
}