ash_sqlite/test/support/test_app.ex

14 lines
345 B
Elixir
Raw Normal View History

2023-09-23 14:52:22 +12:00
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