pub mod auth;
pub mod instrumentation;
pub mod logging;
pub mod panic_recovery;
pub mod request_id;
pub mod tracing;
pub use instrumentation::InstrumentationLayer;
pub type MiddlewareError = Box<dyn std::error::Error + Send + Sync>;
#[cfg(test)]
mod tests {
#[test]
fn test_middleware_placeholder() {
assert!(true);
}
}