mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 23:30:29 +01:00
4e4c29175f
Co-authored-by: Jonas Platte <jplatte+git@posteo.de> Co-authored-by: Michael Scofield <mscofield0@tutanota.com>
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));
|
|
}
|