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