//! # 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
/// Axios-style network action.
pub use axios;
/// Network diagnose action.
pub use diagnose;
/// Fetch-style network action.
pub use fetch;
/// Network log action.
pub use network_log;
/// Replay network action.
pub use replay;
/// XHR-style network action.
pub use xhr;