extern crate chrono;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate reqwest;
#[macro_use]
extern crate error_chain;
#[cfg(test)]
extern crate dotenv;
#[cfg(test)]
extern crate serde_json;
pub mod client;
pub mod error;
pub mod orders;
pub mod products;
mod utils;