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