1 2 3 4 5 6 7 8 9
//! System and Architecture utilities //! //! This module provides dependency injection, shared state management, and system utilities. pub mod di; pub mod result; pub mod state; // Re-export commonly used types and functions