axum/axum-macros/tests/debug_handler/pass/multiple_extractors.rs

8 lines
156 B
Rust
Raw Normal View History

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