summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorDavid Blajda <blajda@hotmail.com>2018-12-18 05:06:05 +0000
committerDavid Blajda <blajda@hotmail.com>2018-12-18 05:06:05 +0000
commitd34229bc3e495d2927415f408b18aec51a4574e2 (patch)
tree42f892b93d1459a55b52ccb009ddafd9166e0a8b /src/lib.rs
parent21ebcdb53db06557fe73e195742c038ed91ef331 (diff)
Implement auth client and auth barrier
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5144895..27dffea 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,3 +1,4 @@
+#![recursion_limit="128"]
#![feature(option_replace)]
extern crate futures;
extern crate reqwest;
@@ -8,6 +9,7 @@ extern crate chrono;
pub mod helix;
pub mod kraken;
pub mod types;
+pub mod error;
pub use self::helix::Client as HelixClient;
pub use self::kraken::Client as KrakenClient;