elif-http 0.8.8

HTTP server core for the elif.rs LLM-friendly web framework
Documentation
//! Bootstrap engine for automatic module discovery and server setup
//!
//! This module provides the core bootstrap functionality that enables the
//! Laravel/NestJS-style one-line app initialization:
//!
//! ```rust
//! #[elif::main]
//! async fn main() -> Result<(), ElifError> {
//!     AppModule::bootstrap().listen("127.0.0.1:3000").await
//! }
//! ```

pub mod app_module;
pub mod controller_registry;
pub mod controllers;
pub mod engine;
pub mod route_validator;

pub use app_module::*;
pub use controller_registry::*;
pub use controllers::*;
pub use engine::*;
pub use route_validator::*;