(
Path(port): Path<u16>,
method: Method,
headers: HeaderMap,
uri: Uri,
body: Bytes,
)
| 1248 | } |
| 1249 | |
| 1250 | async fn metro_proxy_root( |
| 1251 | Path(port): Path<u16>, |
| 1252 | method: Method, |
| 1253 | headers: HeaderMap, |
| 1254 | uri: Uri, |
| 1255 | body: Bytes, |
| 1256 | ) -> Response { |
| 1257 | metro_proxy_response(port, "/", uri.query(), method, headers, body).await |
| 1258 | } |
| 1259 | |
| 1260 | async fn metro_proxy_asset( |
| 1261 | Path((port, path)): Path<(u16, String)>, |
nothing calls this directly
no test coverage detected