mirror of
https://github.com/nikita-volkov/hasql.git
synced 2024-11-22 10:05:27 +03:00
16 lines
314 B
Haskell
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
|