/// # Valor Worker Module
///
/// Implementation of the Valor Worker component within the RighValor Framework.
/// The Valor Worker represents individual computational nodes that execute tasks
/// distributed by the Valor Master and manage local service execution.
///
/// ## Valor Worker Architecture
///
/// The Valor Worker implements key components shown in the framework:
/// - **Worker State Management**: Maintains local worker state and capabilities
/// - **Task Execution**: Processes tasks assigned by the Valor Master
/// - **Service Runtime Integration**: Interfaces with Valor Runtime (ONNX, TensorFlow, WASM, Cmd)
/// - **Northbound Communication**: Bi-directional communication with Valor Master
///
/// ## Message Flow
///
/// Valor Workers handle northbound messages from the Valor Master including:
/// - **Master Task Assignment**: Receiving and executing computational tasks
/// - **Service Management Commands**: Installing, updating, and managing local services
/// - **Registration Confirmation/Rejection**: Master acknowledgment of worker registration
///
/// ## Integration with Service Framework
///
/// Workers interact with the Service Registry to manage and execute services across
/// different categories (Pre-installed, Common, Proxy, etc.) using the appropriate
/// Valor Runtime environment based on service requirements.
pub use *;
pub use *;
pub use *;
pub use *;