jet 0.2.3

Jet API Client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;