mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 07:39:25 +01:00
11 lines
240 B
Rust
11 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));
|
|
}
|