defmodule ExAequoBase do @moduledoc """ Some functions I use all over my places, this is only a namespsace """ @doc """ Hello world. ## Examples iex> ExAequoBase.hello() :world """ def hello do :world end end # SPDX-License-Identifier: AGPL-3.0-or-later