WIP gw2api

Build Status License:MIT License:Apache-2.0 codecov

gw2api is a WIP wrapper over the official Guild Wars 2 API written in Rust using ureq as the underlying request maker.

```rust 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()); ```

Currently supported endpoints:

Q&A

Q: Y u do dis?!

A: There simply didn't exist a fully functional API wrapper for the API, which I needed. It's also a good learning experience in how to write wrappers, planning out project structure and implementing tests. All in all; yay, I spent way too much time on this. (â•¥_â•¥)

Shoutouts