Skip to main content

lib/quack_db/application.ex

defmodule QuackDB.Application do
  @moduledoc """
  OTP application entry point for QuackDB.

  Starts the package supervision tree. Connection processes are started by callers through `QuackDB.start_link/1` or child specs.
  """

  use Application

  @impl true
  def start(_type, _args) do
    Supervisor.start_link([], strategy: :one_for_one, name: QuackDB.Supervisor)
  end
end