API client for ICNDB API written in Elixir. More details in documentation: https://hexdocs.pm/icndb/api-reference.html
The package can be installed as:
- Add
icndb
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:icndb, "~> 0.1.0"}]
end
```
- Ensure
icndb
is started before your application:
```elixir
def application do
[applications: [:icndb]]
end
```