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