WalkFunc is the type of the function called for each method and route visited by Walk.
func(method string, route string, handler http.Handler, middlewares ...func(http.Handler) http.Handler) error
| 829 | |
| 830 | // WalkFunc is the type of the function called for each method and route visited by Walk. |
| 831 | type WalkFunc func(method string, route string, handler http.Handler, middlewares ...func(http.Handler) http.Handler) error |
| 832 | |
| 833 | // Walk walks any router tree that implements Routes interface. |
| 834 | func Walk(r Routes, walkFn WalkFunc) error { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…