//! Microkernel architecture module
//!
//! This module demonstrates the microkernel design where each handler
//! operates independently and can be composed at runtime. This follows
//! the principles of separation of concerns and loose coupling.
// Module declarations
// Re-exports for convenience
pub use *;
pub use *;
pub use *;