Packages

An ergonomic library for investigating the Hex.pm API

Retired package: Deprecated - pre-release

Current section

Files

Jump to
aura lib aura.ex
Raw

lib/aura.ex

# SPDX-License-Identifier: Apache-2.0
defmodule Aura do
@moduledoc """
Documentation for `Aura`.
"""
@doc """
Hello world.
## Examples
iex> Aura.hello()
:world
"""
def hello do
:world
end
end