10 lines
183 B
Go
10 lines
183 B
Go
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
|
|
}
|