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 takeover
3//! panel. Behind the `host` feature so SDK-only consumers don't link
4//! chromiumoxide.
5
6pub mod bootstrap;
7pub mod browser;
8pub mod listener;
9pub mod takeover;
10
11pub use bootstrap::HostArgs;