pjson_rs/infrastructure/
mod.rs

1//! Infrastructure layer - External concerns and adapters
2//!
3//! Implements infrastructure adapters for databases, HTTP servers,
4//! message queues, WebSocket transport, and other external systems.
5
6pub mod adapters;
7#[cfg(feature = "http-server")]
8pub mod http;
9pub mod integration;
10pub mod repositories;
11pub mod services;
12#[cfg(feature = "http-server")]
13pub mod websocket;
14
15pub use adapters::*;
16#[cfg(feature = "http-server")]
17pub use http::*;
18pub use integration::*;
19pub use services::*;
20#[cfg(feature = "http-server")]
21pub use websocket::*;