Iland
An Elixir SDK for the iland cloud API.
Introduction
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.
Installation
The iland package is available on Hex
-
Add
ilandto your list of dependencies inmix.exs:
```elixir
def deps do
[{:iland, "~> 0.1.6"}]
end
```-
Ensure
ilandis started before your application:
```elixir
def application do
[applications: [:iland]]
end
```-
Run
$ mix deps.get
Getting the code
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