10 lines
230 B
Elixir
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
|