Current section

Files

Jump to
sqlite_ecto2 lib sqlite_db_connection app.ex
Raw

lib/sqlite_db_connection/app.ex

defmodule Sqlite.DbConnection.App do
@moduledoc false
use Application
def start(_, _) do
opts = [strategy: :one_for_one, name: Sqlite.DbConnection.Supervisor]
Supervisor.start_link([], opts)
end
end