#![doc(html_favicon_url = "https://raw.githubusercontent.com/ovh/cds/master/cds.png")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/ovh/cds/master/cds.png")]
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate failure;
extern crate jsonwebtoken as jwt;
mod auth;
mod client;
mod error;
pub mod models;
pub mod service;
pub use client::*;
pub use error::*;