chore: Remove commented out code for GET method in build_axum_request

This commit is contained in:
Florian Briand 2024-07-22 13:24:11 +02:00
parent 83b2f7358d
commit d370a9b85d
Signed by: florian_briand
GPG Key ID: CC981B9E6B98E70B

View File

@ -27,7 +27,6 @@ async fn route_fallback(uri: axum::http::Uri) -> (axum::http::StatusCode, String
fn build_axum_request(uri: Uri) -> axum::http::Request<axum::body::Body> {
axum::http::Request::builder()
// .method("GET")
.uri(uri.to_string())
.body(axum::body::Body::empty())
.unwrap()