separate out stream

This commit is contained in:
Martin Algesten
2018-06-30 13:47:37 +02:00
parent 3b249e0313
commit ff582b8c6f
7 changed files with 27 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
use cookie::{Cookie, CookieJar};
use conn::ConnectionPool;
use cookie::{Cookie, CookieJar};
use error::Error;
use response::{self, Response};
use std::sync::Mutex;
@@ -8,7 +8,6 @@ use header::{add_header, get_all_headers, get_header, has_header, Header};
// to get to share private fields
include!("request.rs");
include!("stream.rs");
include!("unit.rs");
/// Agents keep state between requests.