1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
extern crate fibers;
extern crate fibers_http_client;
extern crate futures;
extern crate httpcodec;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serdeconv;
#[macro_use]
extern crate slog;
#[macro_use]
extern crate trackable;
extern crate url;
extern crate url_serde;

pub use error::{Error, ErrorKind};

pub mod request;
pub mod run;
pub mod summary;
pub mod time_series;

mod error;

pub type Result<T> = ::std::result::Result<T, Error>;