1#![doc = include_str!("../README.md")] 2 3//! Erio Event Bus 4 5pub mod bus; 6pub mod error; 7pub mod event; 8pub mod source; 9 10pub use bus::EventBus; 11pub use error::EventBusError; 12pub use event::Event; 13pub use source::EventSource;