1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#![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")]
//! This is a SDK of CDS to let you use the CDS API in Rust
#[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::*;