Skip to main content

codetether_browser/browser/offline/
mod.rs

1//! TetherScript-backed offline browser primitives.
2//!
3//! Net-new capability surface introduced for tetherscript v0.1.0-alpha.12.
4//! See `src/cli/browserctl/offline.rs` for the CLI dispatch.
5
6pub mod auth_trace;
7pub(crate) mod auth_trace_run;
8#[cfg(feature = "tetherscript")]
9pub(crate) mod auth_trace_serde;
10pub mod cookie_diff;
11pub(crate) mod cookie_diff_index;
12pub mod cookie_parse;
13pub mod explain_cors;
14pub(crate) mod explain_cors_analyse;
15pub mod record;
16pub mod replay;
17
18#[cfg(test)]
19mod tests;
20#[cfg(test)]
21mod tests_helpers;
22#[cfg(test)]
23mod tests_net;