Current section

Files

Jump to
closure_table examples ct_ecto deps postgrex lib postgrex app.ex
Raw

examples/ct_ecto/deps/postgrex/lib/postgrex/app.ex

defmodule Postgrex.App do
@moduledoc false
use Application
def start(_, _) do
opts = [strategy: :one_for_one, name: Postgrex.Supervisor]
children = [
{Postgrex.TypeSupervisor, :manager},
Postgrex.Parameters
]
Supervisor.start_link(children, opts)
end
end