10 lines
215 B
Rust
10 lines
215 B
Rust
|
|
//! # rustproxy-routing
|
||
|
|
//!
|
||
|
|
//! Route matching engine for RustProxy.
|
||
|
|
//! Provides domain/path/IP/header matchers and a port-indexed RouteManager.
|
||
|
|
|
||
|
|
pub mod route_manager;
|
||
|
|
pub mod matchers;
|
||
|
|
|
||
|
|
pub use route_manager::*;
|