Skip to main content

nxd_core/domain/contract/
mod.rs

1//! Stable serialized configuration and artifact contract.
2//!
3//! Concrete ownership is split by concern while this module remains the
4//! deliberate public contract surface consumed by application and adapters.
5
6mod artifacts;
7mod config;
8mod error;
9mod resources;
10mod validation;
11
12pub use artifacts::*;
13pub use config::*;
14pub use error::*;
15pub use resources::*;
16pub use validation::*;
17
18#[cfg(test)]
19mod tests;