pubsub_bus/lib.rs
1// *************************************************************************
2//
3// Copyright (c) 2025 Andrei Gramakov. All rights reserved.
4//
5// This file is licensed under the terms of the MIT license.
6// For a copy, see: https://opensource.org/licenses/MIT
7//
8// site: https://agramakov.me
9// e-mail: mail@agramakov.me
10//
11// *************************************************************************
12mod event_bus;
13mod event_bus_internal;
14mod bus_event;
15mod publisher;
16mod subscriber;
17
18pub use event_bus::EventBus;
19pub use bus_event::BusEvent;
20pub use publisher::{EventEmitter, Publisher};
21pub use subscriber::Subscriber;