1
0
mirror of https://github.com/labstack/echo.git synced 2025-07-17 01:43:02 +02:00

Added echo.HandlerFunc to handlers

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2015-04-26 22:41:41 -07:00
parent ff75c9c907
commit dd9bc2de9c
4 changed files with 33 additions and 18 deletions

View File

@ -22,8 +22,9 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
- `func(http.ResponseWriter, *http.Request)`
- `func(http.ResponseWriter, *http.Request) error`
- Handler
- `func(*echo.Context)`
- `echo.HandlerFunc`
- `func(*echo.Context) error`
- `func(*echo.Context)`
- `http.Handler`
- `http.HandlerFunc`
- `func(http.ResponseWriter, *http.Request)`
@ -112,7 +113,7 @@ Hello, World! on the page.
## Contribute
**Use issues for everything**
- Report problems
- Discuss before sending pull request
- Suggest new features