Packages

Precompiled SQLite extensions, to be used with `exqlite`.

Retired package: Release invalid - Broken path building

Current section

Files

Jump to
ex_litedb lib ex_litedb application.ex
Raw

lib/ex_litedb/application.ex

defmodule ExLitedb.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
ExLitedb.CacheETS
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: DAT.Supervisor]
Supervisor.start_link(children, opts)
end
end