1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
extern crate chrono;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate thrift_codec;
#[macro_use]
extern crate trackable;

pub type Result<T> = std::result::Result<T, trackable::error::Failure>;

pub mod thrift;