Current section
Files
Jump to
Current section
Files
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