pubsub_bus/lib.rs
// *************************************************************************
//
// Copyright (c) 2025 Andrei Gramakov. All rights reserved.
//
// This file is licensed under the terms of the MIT license.
// For a copy, see: https://opensource.org/licenses/MIT
//
// site: https://agramakov.me
// e-mail: mail@agramakov.me
//
// *************************************************************************
mod bus;
mod event;
mod publisher;
mod subscriber;
pub use bus::EventBus;
pub use event::{Event, IntoEvent};
pub use publisher::Publisher;
pub use subscriber::Subscriber;