OpenPostgresURL opens a Postgres connection based on the URL.
(ctx context.Context, u *url.URL)
| 69 | type PostgresURLOpener interface { |
| 70 | // OpenPostgresURL opens a Postgres connection based on the URL. |
| 71 | OpenPostgresURL(ctx context.Context, u *url.URL) (*sql.DB, error) |
| 72 | } |
| 73 | |
| 74 | // URLMux is a URL opener multiplexer. It matches the scheme of the URLs |
no outgoing calls