mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-17 04:09:03 +01:00
12 lines
272 B
Rust
12 lines
272 B
Rust
use axum::{body::Body, routing::get, Extension, Router};
|
|
use axum_macros::FromRequest;
|
|
|
|
#[derive(FromRequest, Clone)]
|
|
#[from_request(rejection(Foo))]
|
|
struct Extractor<T>(T);
|
|
|
|
async fn foo(_: Extractor<()>) {}
|
|
|
|
fn main() {
|
|
Router::<Body>::new().route("/", get(foo));
|
|
}
|