ash_admin/lib/ash_admin.ex

19 lines
204 B
Elixir
Raw Normal View History

2020-11-26 10:17:04 +13:00
defmodule AshAdmin do
@moduledoc """
Documentation for `AshAdmin`.
"""
@doc """
Hello world.
## Examples
iex> AshAdmin.hello()
:world
"""
def hello do
:world
end
end