1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! A bus for passing messages around between independent subsystems of an application.

mod bus;
mod message;

#[cfg(feature = "global")]
pub mod global;
pub mod iterators;

pub use bus::*;
pub use message::*;