Skip to main content

secunit_core/
registry.rs

1//! Registry loading + cadence/scope resolution.
2//!
3//! The loader walks an org root, parses every YAML/JSON it expects, and
4//! returns a `LoadedRegistry` plus a per-file diagnostic report. The
5//! resolver answers "when is this control next due?" and "what systems
6//! does its scope expand to on this date?" — both pure functions over the
7//! loaded model so they're easy to property-test.
8
9pub mod coverage;
10pub mod loader;
11pub mod period;
12pub mod resolver;