Files
axum/axum-macros/tests/debug_handler/pass/request_last.rs
T

8 lines
159 B
Rust
Raw Normal View History

2023-03-20 21:02:40 +01:00
use axum::extract::{Extension, Request};
use axum_macros::debug_handler;
#[debug_handler]
2023-03-20 21:02:40 +01:00
async fn handler(_: Extension<String>, _: Request) {}
fn main() {}