pub fn any<H, T, S>(handler: H) -> MethodRouter<S, Infallible>
Expand description
Route requests with the given handler regardless of the method.
ยงExample
use axum::{
routing::any,
Router,
};
async fn handler() {}
// All requests to `/` will go to `handler`.
let app = Router::new().route("/", any(handler));
Additional methods can still be chained:
use axum::{
routing::any,
Router,
};
async fn handler() {}
async fn other_handler() {}
// `POST /` goes to `other_handler`. All other requests go to `handler`
let app = Router::new().route("/", any(handler).post(other_handler));