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