//! # Network inspection & replay browserctl actions.
//!
//! Thin wrappers that translate [`BrowserCtlInput`] fields into typed
//! request structs and delegate to [`BrowserCommand`] dispatch.
//!
//! ## Modules
//!
//! - [`log`] — `network_log` action
//! - [`fetch`] — in-page `fetch()` replay
//! - [`xhr`] — raw XMLHttpRequest replay
//! - [`axios`] — page axios instance replay
//! - [`diagnose`] — dump page HTTP plumbing
pub use axios;
pub use diagnose;
pub use fetch;
pub use network_log;
pub use replay;
pub use xhr;