diff --git a/main.go b/main.go index c32ae67..d9199ab 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,9 @@ func main() { e.GET("/", renderPage) e.GET("/service/health-check", func(c echo.Context) error { - return c.NoContent(http.StatusOK) + c.Response().Writer.WriteHeader(http.StatusOK) + c.Response().Write([]byte("APP VERSION: 1.0.0")) + return nil }) port := os.Getenv("PORT")