(request: IncomingRequest, response_out: ResponseOutparam)
| 14 | |
| 15 | impl test_programs::proxy::exports::wasi::http::incoming_handler::Guest for Handler { |
| 16 | fn handle(request: IncomingRequest, response_out: ResponseOutparam) { |
| 17 | executor::run(async move { |
| 18 | handle_request(request, response_out).await; |
| 19 | }) |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | async fn handle_request(request: IncomingRequest, response_out: ResponseOutparam) { |
nothing calls this directly
no test coverage detected