Files
axum/axum-macros/tests/debug_handler/pass/request_last.rs
T
2023-04-21 17:45:31 +02:00

8 lines
159 B
Rust

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