Files
axum/axum-macros/tests/debug_handler/fail/too_many_extractors.rs
T

26 lines
337 B
Rust
Raw Normal View History

2022-01-26 23:27:22 +01:00
use axum_macros::debug_handler;
use axum::http::Uri;
2021-11-11 21:26:08 +01:00
#[debug_handler]
async fn handler(
e1: Uri,
e2: Uri,
e3: Uri,
e4: Uri,
e5: Uri,
e6: Uri,
e7: Uri,
e8: Uri,
e9: Uri,
e10: Uri,
e11: Uri,
e12: Uri,
e13: Uri,
e14: Uri,
e15: Uri,
e16: Uri,
e17: Uri,
2021-11-11 21:26:08 +01:00
) {}
fn main() {}