1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#[macro_use] extern crate error_chain; extern crate reqwest; extern crate serde; #[macro_use] extern crate serde_derive; extern crate serde_json; pub mod client; pub mod event; mod errors; pub use errors::Error;