ash_postgres/test/support/test_app.ex

13 lines
332 B
Elixir
Raw Normal View History

defmodule AshPostgres.TestApp do
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