boardgamegeek 1.0.1

A non-comprehensive client to the BoardGameGeek website and API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod client;
mod collection;
mod protocol;
mod result;
mod scraping;
mod thing;
mod xml;

pub use {
    client::Client,
    collection::{Collection, CollectionType},
    result::Result,
    thing::{Link, Thing},
};