initial proxy impl

This commit is contained in:
rustysec
2020-03-13 11:28:50 -07:00
committed by Martin Algesten
parent 2956683870
commit 3b0df412ef
6 changed files with 190 additions and 11 deletions

View File

@@ -94,6 +94,7 @@ mod body;
mod error;
mod header;
mod pool;
mod proxy;
mod request;
mod response;
mod stream;
@@ -108,6 +109,7 @@ mod test;
pub use crate::agent::Agent;
pub use crate::error::Error;
pub use crate::header::Header;
pub use crate::proxy::Proxy;
pub use crate::request::Request;
pub use crate::response::Response;