axum/axum-macros/tests/debug_handler/pass/multiple_extractors.rs
2024-11-26 18:04:01 +00:00

7 lines
156 B
Rust

use axum::http::{Method, Uri};
use axum_macros::debug_handler;
#[debug_handler]
async fn handler(_one: Method, _two: Uri, _three: String) {}
fn main() {}