13 lines
262 B
Elixir
13 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
|