ash_admin/test/support/test_app.ex

14 lines
348 B
Elixir
Raw Normal View History

defmodule AshAdmin.TestApp do
@moduledoc false
def start(_type, _args) do
children = [
AshPostgres.TestRepo
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: AshPostgres.Supervisor]
Supervisor.start_link(children, opts)
end
end