Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions rumqttd/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
### Changed
- Export the `Event` type, so the Router's Sender can be used.
- Export the `bridge` module so a bridge can be constructed directly, rather than using the `Broker`.
### Deprecated
### Removed
### Fixed
Expand Down
5 changes: 4 additions & 1 deletion rumqttd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ use tracing_subscriber::{
};

pub use link::alerts;
pub use link::bridge;
pub use link::local;
pub use link::meters;
pub use router::{Alert, Forward, IncomingMeter, Meter, Notification, OutgoingMeter, Router};
pub use router::{
Alert, Event, Forward, IncomingMeter, Meter, Notification, OutgoingMeter, Router,
};
use segments::Storage;
pub use server::{Broker, LinkType, Server};

Expand Down