mediator 0.2.2

An implementation of the Mediator pattern in Rust
Documentation
1
2
3
4
5
6
/// Provides a default implementation of the `Mediator` trait.
pub(crate) mod mediator_impl;

/// Provides an async implementation of the `Mediator` trait.
#[cfg(feature = "async")]
pub(crate) mod async_mediator_impl;