Skip to main content

mockforge_http/
proxy_server.rs

1//! Browser/Mobile Proxy Server — re-export shim.
2//!
3//! Issue #555 phase 1 moved this module to
4//! [`mockforge_proxy::server`]. The file's only foreign imports were
5//! already in `mockforge_proxy` (`body_transform`, `config::ProxyConfig`),
6//! so the move was mechanical.
7//!
8//! This shim keeps existing
9//! `mockforge_http::proxy_server::{ProxyServer, ...}` callers (notably
10//! the workspace's `tests/proxy_verification_tests.rs`) resolving
11//! unchanged. Future phases of #555 may drop this shim entirely; until
12//! then, prefer importing from `mockforge_proxy::server` directly in
13//! new code.
14
15pub use mockforge_proxy::server::*;