nxd_core/ports/mod.rs
1//! Application ports (dependency-inverted boundaries).
2//!
3//! Wave 2 introduces explicit traits for the boundaries already demonstrated by
4//! Runtime ports. Speculative ports are intentionally omitted.
5
6pub mod observe;
7pub mod provider;
8pub mod secrets;
9
10/// Dependency-boundary unit tests (forbid reverse imports at the module graph level).
11#[cfg(test)]
12mod tests;