2022-02-08 12:24:34 +03:00
|
|
|
-- | Postgres Connetion
|
|
|
|
--
|
2022-03-09 10:14:18 +03:00
|
|
|
-- This module re-exports:
|
2022-02-08 12:24:34 +03:00
|
|
|
--
|
2022-03-09 10:14:18 +03:00
|
|
|
-- * MonadTx for abstracting postgres transactions
|
|
|
|
-- * Settings for dealing with connection, pool, and replica settings
|
|
|
|
-- * ET for execution contexts and source configurations
|
2020-10-27 16:53:49 +03:00
|
|
|
module Hasura.Backends.Postgres.Connection
|
2022-03-09 10:14:18 +03:00
|
|
|
( module MonadTx,
|
|
|
|
module Settings,
|
2021-09-24 01:56:37 +03:00
|
|
|
module ET,
|
|
|
|
)
|
|
|
|
where
|
|
|
|
|
2022-03-09 10:14:18 +03:00
|
|
|
import Hasura.Backends.Postgres.Connection.MonadTx as MonadTx
|
|
|
|
import Hasura.Backends.Postgres.Connection.Settings as Settings
|
2021-09-24 01:56:37 +03:00
|
|
|
import Hasura.Backends.Postgres.Execute.Types as ET
|