Files
axum/axum-debug/tests/pass/multiple_extractors.rs
T

7 lines
127 B
Rust
Raw Normal View History

use axum_debug::debug_handler;
#[debug_handler]
async fn handler(_one: String, _two: String, _three: String) {}
fn main() {}