axum/axum-macros/tests/debug_handler/fail/request_not_last.rs

8 lines
183 B
Rust
Raw Normal View History

use axum::{body::Body, extract::Extension, http::Request};
use axum_macros::debug_handler;
#[debug_handler]
async fn handler(_: Request<Body>, _: Extension<String>) {}
fn main() {}