mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-16 00:00:18 +02:00
Co-authored-by: Jonas Platte <[email protected]> Co-authored-by: Michael Scofield <[email protected]>
8 lines
159 B
Rust
8 lines
159 B
Rust
use axum::extract::{Extension, Request};
|
|
use axum_macros::debug_handler;
|
|
|
|
#[debug_handler]
|
|
async fn handler(_: Extension<String>, _: Request) {}
|
|
|
|
fn main() {}
|