mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 15:48:06 +01:00
c7b8813c47
The things are also covered by the doc tests but this also gives us assertions on the errors produced, which is the whole point of this crate :)
24 lines
366 B
Rust
24 lines
366 B
Rust
use axum_debug::debug_handler;
|
|
|
|
#[debug_handler]
|
|
async fn handler(
|
|
e1: String,
|
|
e2: String,
|
|
e3: String,
|
|
e4: String,
|
|
e5: String,
|
|
e6: String,
|
|
e7: String,
|
|
e8: String,
|
|
e9: String,
|
|
e10: String,
|
|
e11: String,
|
|
e12: String,
|
|
e13: String,
|
|
e14: String,
|
|
e15: String,
|
|
e16: String,
|
|
e17: String,
|
|
) {}
|
|
|
|
fn main() {}
|