graphql-engine/server/src-lib/Hasura/Backends/Postgres/Connection.hs
Evie Ciobanu 20b2a13f22 server: split the Postgres Connection module
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3918
GitOrigin-RevId: e845476ea97354ec886afddbb356fbbc16421476
2022-03-09 07:15:17 +00:00

18 lines
523 B
Haskell

-- | Postgres Connetion
--
-- This module re-exports:
--
-- * MonadTx for abstracting postgres transactions
-- * Settings for dealing with connection, pool, and replica settings
-- * ET for execution contexts and source configurations
module Hasura.Backends.Postgres.Connection
( module MonadTx,
module Settings,
module ET,
)
where
import Hasura.Backends.Postgres.Connection.MonadTx as MonadTx
import Hasura.Backends.Postgres.Connection.Settings as Settings
import Hasura.Backends.Postgres.Execute.Types as ET