Packages

Elixir REST API generator

Current section

Files

Jump to
rest_ex lib rest_ex.ex
Raw

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