(path, ...handlers)
| 28 | register("POST", path, handlers); |
| 29 | }, |
| 30 | put(path, ...handlers) { |
| 31 | register("PUT", path, handlers); |
| 32 | }, |
| 33 | delete(path, ...handlers) { |
| 34 | register("DELETE", path, handlers); |
| 35 | }, |
nothing calls this directly
no test coverage detected