ash_admin/test/support/test_app.ex
2024-04-12 12:41:23 -04:00

13 lines
348 B
Elixir

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