reinhardt-server 0.1.0-rc.25

HTTP server implementation for Reinhardt framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(missing_docs)]
//! HTTP server implementation for Reinhardt framework
//!
//! This crate provides HTTP server capabilities with support for:
//! - Hyper-based HTTP/1.1 and HTTP/2
//! - GraphQL (optional)
//! - WebSocket (optional)

/// Core server modules including HTTP, rate limiting, shutdown, and timeout.
pub mod server;

// Re-export server implementation
#[cfg(feature = "server")]
pub use crate::server::*;