Skip to main content

bamboo_engine/events/
mod.rs

1//! Engine event infrastructure.
2//!
3//! - [`replayable`] — the canonical per-session replayable-event helper.
4//! - [`change_feed`] / [`journal`] / [`account_sink`] — the durable,
5//!   account-scoped change feed powering `GET /api/v1/stream`.
6
7pub mod account_sink;
8pub mod change_feed;
9pub mod journal;
10pub mod replayable;
11
12pub use account_sink::AccountEventSink;
13pub use change_feed::ChangeEvent;
14pub use replayable::publish_replayable_session_event;