warden/lib/warden.ex

11 lines
175 B
Elixir
Raw Normal View History

2025-01-04 00:50:52 +00:00
defmodule Warden do
use Application
def start(_type, _args) do
children = [
Server,
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end