package health import "github.com/labstack/echo/v4" func IsHealth(c echo.Context) bool { if c.Request().Method == "GET" && c.Path() == "/health" { return true } return false }