ash_cubdb/lib/ash_cub_db.ex

19 lines
204 B
Elixir
Raw Normal View History

2023-08-07 15:13:01 +12:00
defmodule AshCubDB do
@moduledoc """
Documentation for `AshCubDB`.
"""
@doc """
Hello world.
## Examples
iex> AshCubDB.hello()
:world
"""
def hello do
:world
end
end