mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
6703f8634c
Co-authored-by: Jonas Platte <jplatte+git@posteo.de> Co-authored-by: Michael Scofield <mscofield0@tutanota.com>
7 lines
159 B
Rust
7 lines
159 B
Rust
use axum::extract::{Extension, Request};
|
|
use axum_macros::debug_handler;
|
|
|
|
#[debug_handler]
|
|
async fn handler(_: Extension<String>, _: Request) {}
|
|
|
|
fn main() {}
|