An implemenation of the mediator pattern.
Brazier is heavily inspired by the .NET MediatR pacakage. It allows you to decouple the sending of a message and the handling of it.
```rust use brazier::*;
pub struct Ping {}
impl Request
pub struct PingHandler;
impl RequestHandler
async fn main() -> Result<()> { let mut mediator = Mediator::new(); mediator.register_handler(PingHandler); let result = mediator.send(Ping {}).await?; println!("{}", result); Ok(()) } ```