ha-handler/lib/ha_handler.ex

19 lines
207 B
Elixir

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