Skip to main content

agent_first_http/host/
mod.rs

1//! Browser host: launches Chromium, holds the profile lock, runs the
2//! listener that exposes CDP, `/health`, `/capabilities`, and the ops panel.
3//! Behind the `host` feature so SDK-only consumers don't link chromiumoxide.
4
5pub mod bootstrap;
6pub mod browser;
7pub mod display;
8pub mod listener;
9pub mod ops_panel;
10
11pub use bootstrap::HostArgs;