gndf.io client for Elixir
The package can be installed as:
- Add
egndf
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:egndf, "~> 0.2.2"}]
end
```
- Ensure
egndf
is started before your application:
```elixir
def application do
[applications: [:egndf]]
end
```