11 lines
175 B
Elixir
11 lines
175 B
Elixir
|
defmodule Warden do
|
||
|
use Application
|
||
|
|
||
|
def start(_type, _args) do
|
||
|
children = [
|
||
|
Server,
|
||
|
]
|
||
|
Supervisor.start_link(children, strategy: :one_for_one)
|
||
|
end
|
||
|
end
|