this_env/lib.rs
1//this.env/crate/src/lib.rs
2//by suiGn
3//! Entry point for the this.env crate.
4//! Exposes core environment management and middleware logic.
5pub mod env;
6pub mod middleware;
7pub mod utils;
8// Expose Actix middleware with camelCase alias for convenience
9pub use middleware::actix::ActixMiddleware as actixMiddleware;