hasql/library/Hasql/Connection.hs
Nikita Volkov 6270c62cee Lint
2023-10-16 03:54:25 +03:00

16 lines
314 B
Haskell

-- |
-- This module provides a low-level effectful API dealing with the connections to the database.
module Hasql.Connection
( Connection,
ConnectionError,
acquire,
release,
Settings,
settings,
withLibPQConnection,
)
where
import Hasql.Private.Connection
import Hasql.Private.Settings