Files
exproj/lib/application.ex
2025-08-29 08:06:23 +02:00

10 lines
230 B
Elixir

defmodule Exproj.Application do
use Application
@spec start(any(), any()) :: {:error, any()} | {:ok, pid()}
def start(_type, _args) do
children = []
Supervisor.start_link(children, strategy: :one_for_one)
end
end