fbi-proxy 1.10.1

A fast and flexible proxy server for intercepting and modifying HTTP/HTTPS requests
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Library entry point for `fbi-proxy`.
//!
//! This file exists primarily so that internal modules (like `routes`)
//! can be unit-tested via `cargo test --lib` without coupling them to
//! the binary's runtime concerns.
//!
//! The binary in `rs/fbi-proxy.rs` does not currently depend on this
//! library — the routing engine is intentionally not wired into the
//! live request path yet (see `docs/routing.md` for the migration
//! plan).

pub mod routes;