Current section
Files
Jump to
Current section
Files
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