1
0
mirror of https://github.com/labstack/echo.git synced 2025-12-21 23:57:40 +02:00
Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2016-04-04 22:49:14 -07:00
parent bcbd9a0f42
commit 2dc1d53da5
2 changed files with 4 additions and 3 deletions

View File

@@ -422,8 +422,9 @@ func (e *Echo) add(method, path string, handler HandlerFunc, middleware ...Middl
func (e *Echo) Group(prefix string, m ...MiddlewareFunc) (g *Group) {
g = &Group{prefix: prefix, echo: e}
g.Use(m...)
// Dummy handler so group can be used with static middleware.
g.Get("", func(c Context) error {
// Dummy handler to use static middleware with groups
// See also issue #446
g.Get("/", func(c Context) error {
return c.NoContent(http.StatusNotFound)
})
return