mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-27 01:31:23 +01:00
13 lines
276 B
Rust
13 lines
276 B
Rust
|
use axum::{body::Body, routing::get, Extension, Router};
|
||
|
use axum_macros::FromRequestParts;
|
||
|
|
||
|
#[derive(FromRequestParts, Clone)]
|
||
|
#[from_request(via(Extension))]
|
||
|
enum Extractor {}
|
||
|
|
||
|
async fn foo(_: Extractor) {}
|
||
|
|
||
|
fn main() {
|
||
|
Router::<(), Body>::new().route("/", get(foo));
|
||
|
}
|