codetether-browser 0.1.0

Browser automation runtime for CodeTether
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Network inspection and request helpers for native sessions.

mod http;
mod inspect;
mod replay_call;

/// HTTP request handlers.
pub(super) use http::{axios, fetch, xhr};
/// Network inspection handlers.
pub(super) use inspect::{diagnose, log};
/// Request replay handler.
pub(super) use replay_call::replay;