pre.hn/lib/pre_dot_hn/application.ex
2024-11-30 13:01:15 -06:00

12 lines
262 B
Elixir

defmodule PreDotHn.Application do
use Application
def start(_type, _args) do
children = [
{Bandit, plug: PreDotDn.DevServer}
]
opts = [strategy: :one_for_one, name: PreDotHn.Supervisor]
Supervisor.start_link(children, opts)
end
end