bamboo-server 2026.7.1

HTTP server and API layer for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Agent execution cancellation API handler.

mod handler;
mod types;

pub use handler::handler;
// Reused by the v2 WS multiplex `control` channel (`{"type":"stop"}`).
pub(crate) use handler::cancel_session;

#[cfg(test)]
mod tests;