Skip to main content

this_env/middleware/actix/
mod.rs

1//this.env/crate/src/middleware/actix/mod.rs
2//by suiGn
3//! Actix adapter module for `this.env`
4//! 
5//! This module organizes subcomponents for integrating Actix Web
6//! with the `this.env` environment resolution system.
7pub mod middleware;
8pub mod service;
9pub mod config;
10pub mod handlers;
11pub mod utils;
12pub mod env_request_parser;
13pub mod mw_router;
14pub use config::*;
15pub use middleware::*;
16