osproxy-server 1.0.1

The osproxy binary: process lifecycle and wiring. No business logic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Library half of the `osproxy` binary.
//!
//! Holds the reference [`tenancy`] implementation and the ingress [`handler`]
//! that wires the engine pipeline to the transport. It lives in a library (with
//! `main.rs` a thin entry point) so the wiring is unit- and integration-testable
//! without spawning a process.
#![deny(missing_docs)]

pub mod auth;
mod bearer;
pub use osproxy_capture as capture;
pub mod cursor;
pub mod directive;
pub mod forward_headers;
pub mod handler;
pub mod log;
pub mod tenancy;