ash_admin/lib/ash_admin.ex

21 lines
613 B
Elixir
Raw Normal View History

2020-11-26 10:17:04 +13:00
defmodule AshAdmin do
2021-03-22 19:41:22 +13:00
@moduledoc false
2020-12-08 19:22:24 +13:00
use Application
2020-11-26 10:17:04 +13:00
2020-12-08 19:22:24 +13:00
# See http://elixir-lang.org/docs/stable/elixir/Application.html
# for more information on OTP Applications
def start(_type, _args) do
import Supervisor.Spec, warn: false
2020-11-26 10:17:04 +13:00
2020-12-08 19:22:24 +13:00
children = [
# Define workers and child supervisors to be supervised
# worker(AshAdmin.Worker, [arg1, arg2, arg3]),
]
2020-11-26 10:17:04 +13:00
2020-12-08 19:22:24 +13:00
# See http://elixir-lang.org/docs/stable/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: AshAdmin.Supervisor]
Supervisor.start_link(children, opts)
2020-11-26 10:17:04 +13:00
end
end