1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
extern crate chrono; extern crate codealong; #[macro_use] extern crate error_chain; extern crate reqwest; #[macro_use] extern crate serde_derive; extern crate serde; extern crate serde_json; mod client; mod error; mod event; pub use crate::client::Client; pub use crate::error::{Error, ErrorKind};