| 10 | } |
| 11 | |
| 12 | type route struct { |
| 13 | method string |
| 14 | path string |
| 15 | prefix bool |
| 16 | handler appHandler |
| 17 | matcherFunc func(*http.Request) bool |
| 18 | } |
| 19 | |
| 20 | func NewRouter() *router { |
| 21 | return &router{} |
nothing calls this directly
no outgoing calls
no test coverage detected