pre.hn/lib/lain/application.ex
2025-01-10 16:30:05 -06:00

12 lines
254 B
Elixir

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