diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-27 04:46:10 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-27 04:46:10 +0000 |
commit | cb1b144e48ee357a76f551433d4886f092d259c8 (patch) | |
tree | 15606dc621e4d68f3bf3e9d27a44e6fd02a00fc5 /src/lib.rs | |
parent | 2e08d0c8abbfb9f989c61acb4f6c580719a65b42 (diff) |
Use a generic client for both helix and kraken
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,14 +6,14 @@ extern crate serde; extern crate chrono; #[macro_use] extern crate serde_derive; -use reqwest::r#async::Client as ReqwestClient; - pub mod helix; pub mod kraken; pub mod types; pub mod error; pub mod sync; pub mod namespace; +pub mod client; +pub mod models; pub use self::helix::Client as HelixClient; -pub use self::kraken::Client as KrakenClient; +//pub use self::kraken::Client as KrakenClient; |