| 332 | } |
| 333 | |
| 334 | void Server::post(const string& path, RouteHandler handler) { |
| 335 | route("POST", path, handler); |
| 336 | } |
| 337 | |
| 338 | void Server::put(const string& path, RouteHandler handler) { |
| 339 | route("PUT", path, handler); |
no outgoing calls
no test coverage detected