package http import ( "github.com/labstack/echo/v4" "net/http" ) func (s Server) healthCheck(c echo.Context) error { return c.JSON(http.StatusOK, "everything is good!") }