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

26 lines
354 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(
2023-09-29 07:25:26 +00:00
_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() {}