(path, ...handlers)
| 31 | register("PUT", path, handlers); |
| 32 | }, |
| 33 | delete(path, ...handlers) { |
| 34 | register("DELETE", path, handlers); |
| 35 | }, |
| 36 | }, |
| 37 | getHandlers(method, path) { |
| 38 | return routes.get(`${method} ${path}`) || []; |
nothing calls this directly
no test coverage detected