hasql/library/Hasql/Connection.hs
2024-01-27 00:23:09 +03:00

16 lines
303 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.Connection.Core
import Hasql.Settings