// file: kb-lib/src/materializer/governance.rs // version: 4 //! `governance` materializer family. mod constants; mod materializer; /// Reserved governance materializer. pub use self::materializer::MtGovernanceMaterializer; /// Empty accepted-family boundary for the reserved component. pub(crate) use self::constants::MT_GOVERNANCE_ACCEPTED_FAMILIES; /// Stable runtime component name for the `governance` materializer. pub(crate) use self::constants::MT_GOVERNANCE_COMPONENT_NAME; /// Stable processor name for the `governance` materializer. pub(crate) use self::constants::MT_GOVERNANCE_PROCESSOR_NAME;