defmodule HAHandler do @moduledoc """ Documentation for `HAHandler`. """ @doc """ Hello world. ## Examples iex> HAHandler.hello() :world """ def hello do :world end end