Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
// HealthStatusOK is health status ok
HealthStatusOK = "OK"
)
Functions ¶
Types ¶
type HealthCheck ¶
HealthCheck to handle health-check
type Server ¶ added in v0.8.32
type Server interface {
CONNECT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
DELETE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
GET(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
HEAD(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
OPTIONS(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
PATCH(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
POST(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
PUT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
TRACE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
Any(path string, handler echo.HandlerFunc, middleware ...echo.MiddlewareFunc) []*echo.Route
Add(method, path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
Match(methods []string, path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) []*echo.Route
Group(prefix string, m ...echo.MiddlewareFunc) *echo.Group
Use(m ...echo.MiddlewareFunc)
}
Server interface for echo.Echo and echo.Group
Click to show internal directories.
Click to hide internal directories.