Packages

Asynchronous process orchestrator (OTP) and telemetry

Current section

Files

Jump to
arrea lib arrea application.ex
Raw

lib/arrea/application.ex

defmodule Arrea.Application do
@moduledoc """
OTP Application callback for `Arrea`.
Starts the `Arrea.Supervisor` supervision tree when the application boots.
This is invoked automatically by the OTP application system when Arrea is
included as a dependency — no manual `start_link` call is needed.
"""
use Application
@impl true
def start(_type, _args) do
Arrea.Supervisor.start_link([])
end
end