//! Component registry for compile-time registration.
//!
//! Provides infrastructure for registering hexagonal architecture components
//! at compile time using the inventory pattern, enabling automatic graph construction.
//!
//! Revision History
//! - 2025-10-02T00:00:00Z @AI: Initial Phase 3 registry implementation.
pub use ComponentEntry;
pub use ComponentRegistry;
pub use NodeInfo;
pub use Registrable;