bamboo-server 2026.6.2

HTTP server and API layer for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Server event infrastructure.
//!
//! - [`replayable`] — the canonical per-session replayable-event helper.
//! - [`change_feed`] / [`journal`] / [`account_sink`] — the durable,
//!   account-scoped change feed powering `GET /api/v1/stream`.

pub mod account_sink;
pub mod change_feed;
pub mod journal;
pub mod replayable;

pub use account_sink::AccountEventSink;
pub use change_feed::ChangeEvent;
pub use replayable::publish_replayable_session_event;