Current section
Files
Jump to
Current section
Files
lib/durable_server.ex
defmodule DurableServer do
@moduledoc """
Documentation for `DurableServer`.
"""
@doc """
Hello world.
## Examples
iex> DurableServer.hello()
:world
"""
def hello do
:world
end
end