@@ -59,6 +59,7 @@ type RouteInfo struct {
 	Method      string
 	Path        string
 	Handler     string
+	Handlers    HandlersChain
 	HandlerFunc HandlerFunc
 }
 
@@ -357,6 +358,7 @@ func iterate(path, method string, routes RoutesInfo, root *node) RoutesInfo {
 			Method:      method,
 			Path:        path,
 			Handler:     nameOfFunction(handlerFunc),
+			Handlers:    root.handlers,
 			HandlerFunc: handlerFunc,
 		})
 	}