//! ObjectiveAI MCP proxy library.
//!
//! Other crates can `use objectiveai_mcp_proxy::{ConfigBuilder, run}` and
//! spawn the proxy in-process; the binary at `main.rs` is a thin wrapper
//! that reads `Config` from the environment and calls [`run`].
use Arc;
use Client;
use crateSessionManager;
/// Shared state every axum handler reaches via `State<AppState>`.
pub use *;
pub use parse_key_env;