1
2
3
4
5
6
7
8
9
//! A collection of request types and utilities.

use axum::body::Body;

/// A type representing a raw request.
pub type RawRequest<T = Body> = ::axum::extract::Request<T>;

mod state;
pub use state::State;