diff options
author | David Blajda <blajda@hotmail.com> | 2019-05-08 15:38:37 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2019-05-08 15:38:37 +0000 |
commit | 98fb79b85e3cfbb547e5340b30623511daf09ef5 (patch) | |
tree | a03bd7a95c86a92eb7510409429f50433056d7ab /src/lib.rs | |
parent | 0e09c2c06fc0b81f11d12985a4172c815233db17 (diff) |
:WIP: Move types to a different crate
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/lib.rs b/src/lib.rs deleted file mode 100644 index 35361ed..0000000 --- a/src/lib.rs +++ /dev/null @@ -1,22 +0,0 @@ -#![recursion_limit="128"] -#![feature(never_type)] -extern crate futures; -extern crate reqwest; -extern crate serde; -extern crate chrono; -extern crate serde_json; -#[macro_use] extern crate serde_derive; -#[macro_use] extern crate log; - -pub mod helix; -pub mod kraken; -pub mod types; -pub mod error; -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::client::{ClientConfig, TestConfig}; |