reinhardt_server/lib.rs
1#![warn(missing_docs)]
2//! HTTP server implementation for Reinhardt framework
3//!
4//! This crate provides HTTP server capabilities with support for:
5//! - Hyper-based HTTP/1.1 and HTTP/2
6//! - GraphQL (optional)
7//! - WebSocket (optional)
8
9/// Core server modules including HTTP, rate limiting, shutdown, and timeout.
10pub mod server;
11
12// Re-export server implementation
13#[cfg(feature = "server")]
14pub use crate::server::*;