Documentation
¶
Index ¶
- type Handler
- type Middleware
- type Router
- func (r *Router) Any(path string, h Handler, m ...Middleware)
- func (r *Router) DELETE(path string, h Handler, m ...Middleware)
- func (r *Router) GET(path string, h Handler, m ...Middleware)
- func (r *Router) PATCH(path string, h Handler, m ...Middleware)
- func (r *Router) POST(path string, h Handler, m ...Middleware)
- func (r *Router) PUT(path string, h Handler, m ...Middleware)
- func (r *Router) SubGroup(prefix string, m ...Middleware) *Router
- func (r *Router) Use(middleware ...Middleware)
- type Server
- type Template
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Middleware ¶
type Router ¶
type Router struct {
*echo.Group
}
Router wraps echo.Group to provide custom Handler support
func (*Router) Use ¶
func (r *Router) Use(middleware ...Middleware)
Click to show internal directories.
Click to hide internal directories.