(path, ...handlers)
| 25 | register("GET", path, handlers); |
| 26 | }, |
| 27 | post(path, ...handlers) { |
| 28 | register("POST", path, handlers); |
| 29 | }, |
| 30 | put(path, ...handlers) { |
| 31 | register("PUT", path, handlers); |
| 32 | }, |
nothing calls this directly
no test coverage detected