summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 35361ed412b64f1a5645f690c9b55499e2a09255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![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};