Current section

Files

Jump to
depot lib depot application.ex
Raw

lib/depot/application.ex

defmodule Depot.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
Depot.Registry
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end