Files
ExMine/lib/ex_mine/application.ex
Gavin McDonald d791876742 modernizing
2025-05-22 18:13:59 -04:00

17 lines
275 B
Elixir

defmodule ExMine.Application do
use Application
def start(_type, _args) do
children = [
{ExMine.Server, []}
]
options = [
name: ExMine.Supervisor,
strategy: :simple_one_for_one
]
Supervisor.start_link(children, options)
end
end