//! Library half of `bezant-server`.
//!
//! The binary in `main.rs` is a thin shell around the reusable pieces here:
//! [`router`] builds an [`axum::Router`] wired to the CPAPI pass-through
//! handlers, and [`AppState`] is the shared bag of state every handler
//! needs. Integration tests build the same router against wiremock
//! instead of a real gateway.
pub use ;
pub use router;
pub use AppState;