stdlibRouter is a Router implementation for the stdlib's `http.ServeMux`.
| 62 | |
| 63 | // stdlibRouter is a Router implementation for the stdlib's `http.ServeMux`. |
| 64 | type stdlibRouter struct { |
| 65 | mux *http.ServeMux |
| 66 | } |
| 67 | |
| 68 | // Handle will call the Stdlib's HandleFunc() methods with a check for the incoming |
| 69 | // HTTP method. To allow for multiple methods on a single route, use 'ANY'. |
nothing calls this directly
no outgoing calls
no test coverage detected