From aba9b09450e66b0f491bdf9a3803c4aca2dcce21 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 23 Aug 2018 20:52:31 -0700 Subject: [PATCH] export ConnectorError --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 8ae11afb..4b19d341 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -59,7 +59,7 @@ pub mod ssl; mod worker; mod connector; -pub use connector::Connector; +pub use connector::{Connector, ConnectorError}; pub use server::Server; pub use service::{IntoNewService, IntoService, NewServiceExt};