gw2lib 3.0.2

A simple to use Gw2 API wrapper library
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg(feature = "blocking")]

use gw2lib::{model::maps::Map, Requester};

pub mod setup;

#[test]
fn all() {
    let client = crate::setup::setup();
    let _: Vec<Map> = client.all().unwrap();
}