diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-18 05:06:05 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-18 05:06:05 +0000 |
commit | d34229bc3e495d2927415f408b18aec51a4574e2 (patch) | |
tree | 42f892b93d1459a55b52ccb009ddafd9166e0a8b /src/lib.rs | |
parent | 21ebcdb53db06557fe73e195742c038ed91ef331 (diff) |
Implement auth client and auth barrier
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |