mirror of
https://github.com/labstack/echo.git
synced 2025-07-07 01:06:40 +02:00
@ -156,7 +156,7 @@ type (
|
||||
pvalues []string
|
||||
query url.Values
|
||||
store store
|
||||
handler Handler
|
||||
handler HandlerFunc
|
||||
echo *Echo
|
||||
}
|
||||
|
||||
@ -204,7 +204,7 @@ func (c *context) Value(key interface{}) interface{} {
|
||||
}
|
||||
|
||||
func (c *context) Handle(ctx Context) error {
|
||||
return c.handler.Handle(ctx)
|
||||
return c.handler(ctx)
|
||||
}
|
||||
|
||||
func (c *context) Request() engine.Request {
|
||||
|
Reference in New Issue
Block a user