Current section

Files

Jump to
ex_http_microservice lib ex_http_microservice.ex
Raw

lib/ex_http_microservice.ex

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