//! Core traits and types for the Hexeract messaging framework.
//!
//! This crate is a placeholder. The full implementation ships in v0.1.0.
/// Marker trait for messages expressing the intent to mutate state.
/// Contextual information propagated into every handler invocation.
/// Type-erased metadata carried alongside every dispatch.
/// Unified framework error type.
/// Async handler traits dispatched by the mediator.
/// Unique identifier newtypes for messages and correlations.
/// Middleware pipeline primitives.
/// Marker trait for read-only messages asking for information.
pub use Command;
pub use HandlerContext;
pub use MessageEnvelope;
pub use HexeractError;
pub use ;
pub use ;
pub use ;
pub use Query;