| 45 | } |
| 46 | |
| 47 | void HttpHandler::HandleGet(const HttpRequest* req, HttpResponse* resp) { |
| 48 | MethodNotAllowed(req, resp); |
| 49 | } |
| 50 | |
| 51 | void HttpHandler::HandlePost(const HttpRequest* req, HttpResponse* resp) { |
| 52 | MethodNotAllowed(req, resp); |
nothing calls this directly
no outgoing calls
no test coverage detected