/tokenex-elixir

A Elixir client for the TokenEx API

Primary LanguageElixir

TokenEx

A Elixir client for the TokenEx API.

Installation

If available in Hex, the package can be installed as:

  1. Add tokenex to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:tokenex, "~> 0.1.0"}]
end
```
  1. Ensure tokenex is started before your application:
```elixir
def application do
  [applications: [:tokenex]]
end
```