An Elixir SDK for the iland cloud API.
The iland cloud Elxiir SDK provides a wrapper around the iland cloud API. This libary handles token management as well as reponse handling.
iland cloud provides Enterprise-grade IaaS and this library is intended to make it even easier for Elixir programmers to use.
The iland package is available on Hex
- Add
iland
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:iland, "~> 0.1.8"}]
end
```
- Ensure
iland
is started before your application:
```elixir
def application do
[applications: [:iland]]
end
```
- Run
$ mix deps.get
The code is hosted at https://github.com/ilanddev/elixir-sdk
Check out the latest development version anonymously with:
$ git clone https://github.com/ilanddev/elixir-sdk
$ cd elixir-sdk