1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
extern crate chrono;
extern crate futures;
extern crate hyper;
extern crate hyper_tls;
#[macro_use]
extern crate log;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
extern crate tokio_core;

mod stitch;

/// Re-exports
pub use stitch::error::Error;
pub use stitch::message::{Message, UpsertRequest};
pub use stitch::types::{Future, Result};
pub use stitch::StitchClient;