sunbeam-g2v 0.1.0

Sunbeam Service Framework - A ConnectRPC-based framework for building microservices
Documentation
//! Middleware for Sunbeam services.

pub mod auth;
pub mod instrumentation;
pub mod logging;
pub mod panic_recovery;
pub mod request_id;
pub mod tracing;

/// Re-export commonly used middleware
pub use instrumentation::InstrumentationLayer;

/// A boxed error type for middleware.
pub type MiddlewareError = Box<dyn std::error::Error + Send + Sync>;

#[cfg(test)]
mod tests {
    #[test]
    fn test_middleware_placeholder() {
        assert!(true);
    }
}