ash_gen_server/lib/ash_gen_server.ex

18 lines
216 B
Elixir

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