mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
12 lines
253 B
Rust
12 lines
253 B
Rust
#![feature(diagnostic_namespace)]
|
|
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));
|
|
}
|