diff options
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}; |