mcpr-core 0.4.54

Core types, traits, protocol, and proxy engine for mcpr crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Per-request proxy pipeline: parse → route → request middleware → handler
//! → response middleware → emit. [`run`] is the single entrypoint every
//! HTTP request goes through.

pub mod context;
pub mod emit;
pub mod handlers;
pub mod parser;
pub mod route;
pub mod run;
pub mod steps;

pub use run::run;