package controllers import ( "net/http" "github.com/gin-gonic/gin" "github.com/up9inc/mizu/agent/pkg/version" "github.com/up9inc/mizu/shared" ) func GetVersion(c *gin.Context) { resp := shared.VersionResponse{Ver: version.Ver} c.JSON(http.StatusOK, resp) }