lib/rest_ex.ex

defmodule RestEx do
  @moduledoc """
  Documentation for `RestEx`.
  """

  @doc """
  Hello world.

  ## Examples

      iex> RestEx.hello()
      :world

  """
  def hello do
    :world
  end
end