Packages

AbaAPI is an Elixir wrapper for the HOTS API (https://hotsapi.net/).

Current section

Files

Jump to
aba_api lib aba_api.ex
Raw

lib/aba_api.ex

defmodule AbaAPI do
@moduledoc """
Documentation for AbaAPI.
"""
@doc """
Hello world.
## Examples
iex> AbaAPI.hello
:world
"""
def hello do
:world
end
@doc """
Returns the current version for HOTS API as a string
"""
def api_version do
"1"
end
end