Current section
Files
Jump to
Current section
Files
lib/phoenix/live_admin/application.ex
defmodule Phoenix.LiveAdmin.Application do
@moduledoc false
use Application
def start(_, _) do
children = [
{DynamicSupervisor, name: Phoenix.LiveAdmin.DynamicSupervisor, strategy: :one_for_one}
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end