rust-webx-core 0.2.1

rust-webx core traits: IRequest, IRequestHandler, IMiddleware, IHttpContext, IMediator, and more
Documentation
// lrwf-core — Core traits for the LRWF framework.

pub mod app;
pub mod auth;
pub mod cache;
pub mod config;
pub mod route;
pub mod error;
pub mod handler;
pub mod http;
pub mod mediator;
pub mod middleware;
pub mod mode;
pub mod pagination;
pub mod paths;
pub mod pipeline;
pub mod problem;
pub mod request_context;
pub mod routing;

pub use app::*;
pub use auth::*;
pub use cache::cache_ext::DistributedCacheExtensions;
pub use cache::options::DistributedCacheEntryOptions;
pub use cache::trait_def::{CacheError, IDistributedCache};
pub use config::*;
pub use route::*;
pub use error::*;
pub use handler::*;
pub use http::*;
pub use mediator::*;
pub use middleware::*;
pub use mode::*;
pub use pagination::*;
pub use paths::*;
pub use pipeline::*;
pub use problem::*;
pub use request_context::*;
pub use routing::*;