ash_cubdb/lib/ash_cub_db.ex
James Harton 22d93d84cb
All checks were successful
continuous-integration/drone/push Build is passing
chore: first commit.
2023-08-07 15:20:09 +12:00

19 lines
204 B
Elixir

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