// SPDX-License-Identifier: BUSL-1.1
//! In-memory registry ⇔ redb verification.
//!
//! Each submodule holds a single verifier for one registry
//! family. A verifier compares the redb truth against the
//! current in-memory state using the registry's snapshot/list
//! methods, reports divergences, and repairs by re-loading
//! from redb into the same registry (swap-in fresh).
//!
//! The top-level dispatcher lives in [`run`] to respect the
//! `mod.rs = pub mod + pub use` house rule.
pub use verify_registries;