//! gw2api is a fairly simple wrapper over the Guild Wars 2 API.
//!
//! ```
//! use gw2api::client::Client;
//! use gw2api::v1::build::Build;
//!
//! let client = Client::new();
//! let build = Build::get_build(&client).unwrap();
//! println!("Current build id: {}", build.id());
//! ```
//!
extern crate ureq;
extern crate serde;
extern crate serde_derive;
// Client
// Object and enum definitions
// Endpoints