1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//  LIB.rs
//    by Lut99
// 
//  Created:
//    23 Nov 2022, 10:34:23
//  Last edited:
//    25 Nov 2022, 15:16:02
//  Auto updated?
//    Yes
// 
//  Description:
//!   The `brane-prx` crate implements a proxy service that maps incoming
//!   traffic on one port to a destination on the other. It basically does
//!   a man-in-the-middle attack lel.
// 

// Declare modules
pub mod errors;
pub mod spec;
pub mod ports;
pub mod manage;
pub mod redirect;
pub mod client;