oxibrowser_cdp/lib.rs
1//! OxiBrowser CDP — Chrome DevTools Protocol server.
2//!
3//! Implements the CDP WebSocket protocol so that tools like Puppeteer and
4//! Playwright can connect to OxiBrowser, just like they connect to Chrome.
5//!
6
7pub mod event;
8pub mod protocol;
9pub mod server;
10pub mod session;
11
12pub mod domains;
13
14pub use server::CdpServer;