| 142 | struct HttpEvent : Event |
| 143 | { |
| 144 | HttpEvent( |
| 145 | http::Request* _request, |
| 146 | Promise<http::Response>* _response) |
| 147 | : request(_request), |
| 148 | response(_response) {} |
| 149 | |
| 150 | HttpEvent(HttpEvent&&) = default; |
| 151 | HttpEvent(const HttpEvent&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected