Files
parrhesia/lib/parrhesia/application.ex
Steffen Beyer f4d94c9fcb
Some checks failed
CI / Test (OTP 27.2 / Elixir 1.18.2) (push) Failing after 0s
CI / Test (OTP 28.4 / Elixir 1.19.4 + Marmot E2E) (push) Failing after 0s
Refactor test runtime ownership
2026-03-17 12:06:32 +01:00

11 lines
187 B
Elixir

defmodule Parrhesia.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
Parrhesia.Runtime.start_link(name: Parrhesia.Supervisor)
end
end