mirror of
https://github.com/tokio-rs/axum.git
synced 2025-01-20 15:44:46 +01:00
12 lines
240 B
Rust
12 lines
240 B
Rust
|
use axum::{body::Body, routing::get, Extension, Router};
|
||
|
use axum_macros::FromRequest;
|
||
|
|
||
|
#[derive(FromRequest, Clone)]
|
||
|
struct Extractor<T>(T);
|
||
|
|
||
|
async fn foo(_: Extractor<()>) {}
|
||
|
|
||
|
fn main() {
|
||
|
Router::<Body>::new().route("/", get(foo));
|
||
|
}
|