Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 672 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 672 Bytes

NemeStatsClient

Build Status

An Elixir wrapper around the NemeStats API

Installation

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

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