bamboo-server 2026.4.29

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
//! Unified HTTP server entry points
//!
//! Consolidates run(), run_with_bind(), WebService from web_service/server.rs
//! Eliminates the proxy pattern by using unified AppState

mod entrypoints;
mod listeners;
mod web_service;

pub use entrypoints::{run, run_with_bind, run_with_bind_and_static};
pub use web_service::WebService;

#[cfg(test)]
mod tests;