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