Files

12 lines
219 B
Rust
Raw Permalink Normal View History

2023-03-12 16:37:32 +01:00
use axum::{routing::get, Router};
use axum_macros::FromRequest;
#[derive(FromRequest, Clone)]
struct Extractor<T>(T);
async fn foo(_: Extractor<()>) {}
fn main() {
2023-03-12 16:37:32 +01:00
_ = Router::<()>::new().route("/", get(foo));
}