README.md

# ExBacklog
[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/yujikawa/ex_backlog/blob/master/LICENSE)
[![hex.pm version](https://img.shields.io/hexpm/v/ex_backlog.svg)](https://hex.pm/packages/ex_backlog)

Elixir client library for Backlog.(It is not official.)

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `ex_backlog` to your list of dependencies in `mix.exs`:

```elixir
def deps do
  [
    {:ex_backlog, "~> 0.1.0"}
  ]
end
```

## Example
```elixir
iex> client = ExBacklog.Client.new("<access-base-url>", "<access-api-key>")
iex> ExBacklog.Users.get_users(client)
%HTTPoison.Response{body: "[{.....
 status_code: 200}
```

## Tests
```elixir
mix test
```

Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/ex_backlog](https://hexdocs.pm/ex_backlog).

## License
This project is licensed under the terms of the MIT license, see LICENSE.