mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-25 00:28:07 +01:00
df612fdc72
Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
13 lines
237 B
Rust
13 lines
237 B
Rust
use axum::{
|
|
extract::Request,
|
|
response::Response,
|
|
middleware::Next,
|
|
debug_middleware,
|
|
};
|
|
|
|
#[debug_middleware]
|
|
async fn my_middleware(next: Next, request: Request) -> Response {
|
|
next.run(request).await
|
|
}
|
|
|
|
fn main() {}
|