mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
20b2a13f22
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3918 GitOrigin-RevId: e845476ea97354ec886afddbb356fbbc16421476
18 lines
523 B
Haskell
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
|