1 2 3 4 5 6 7 8 9 10 11 12
mod constants; mod history_comparison; #[allow(clippy::module_inception)] mod identity; mod identity_verification; pub use constants::*; pub use history_comparison::*; pub use identity::*; /// Verified Changes of an [`Identity`] pub mod verified_change;