mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-28 07:20:12 +01:00
11 lines
219 B
Rust
11 lines
219 B
Rust
use axum::{routing::get, Router};
|
|
use axum_macros::FromRequest;
|
|
|
|
#[derive(FromRequest, Clone)]
|
|
struct Extractor<T>(T);
|
|
|
|
async fn foo(_: Extractor<()>) {}
|
|
|
|
fn main() {
|
|
_ = Router::<()>::new().route("/", get(foo));
|
|
}
|