blob: 38778e2c73bb0a8f435b5aa79dcace9f8b01d6b7 (
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(try_from)]
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};
|