1
2
3
4
5
6
7
8
9
10
11
///! An API client for the [Cloudflare API](https://api.cloudflare.com)
extern crate chrono;
extern crate reqwest;
#[macro_use]
extern crate serde;
extern crate serde_json;
extern crate serde_qs;
extern crate url;

pub mod endpoints;
pub mod framework;