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

27 lines
355 B
Rust
Raw Normal View History

use axum::http::Uri;
2024-11-26 19:04:01 +01:00
use axum_macros::debug_handler;
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,
2024-11-26 19:04:01 +01:00
) {
}
2021-11-11 21:26:08 +01:00
fn main() {}