warden/lib/warden.ex
2025-01-03 16:50:52 -08:00

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