ash_sqlite/test/support/test_app.ex
2023-09-22 22:52:22 -04:00

13 lines
345 B
Elixir

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