An Elixir wrapper around the BoardGameGeek API
If available in Hex, the package can be installed as:
- Add
boardgamegeek_client
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:boardgamegeek_client, "~> 0.1.0"}]
end
```
- Ensure
boardgamegeek_client
is started before your application:
```elixir
def application do
[applications: [:boardgamegeek_client]]
end
```