defmodule ExSQL.Application do @moduledoc false use Application @impl true def start(_type, _args) do children = [ ExSQL.Registry ] Supervisor.start_link(children, strategy: :one_for_one, name: ExSQL.Supervisor) end end