bamboo-server 2026.6.23

HTTP server and API layer for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Account-scoped change-feed SSE endpoint.

mod handler;
mod response;

pub use handler::handler;
// Reused by the v2 WS multiplex (`feed` channel) so the WS path runs the exact
// same journal-replay + cursor handoff discipline as the v1 SSE feed instead of
// reimplementing it.
pub(crate) use response::{plan_replay, ReplayPlan};

#[cfg(test)]
mod tests;