mirror of
https://github.com/nikita-volkov/hasql.git
synced 2024-11-22 18:22:05 +03:00
14 lines
341 B
Haskell
14 lines
341 B
Haskell
module Hasql.TestingUtils.Constants where
|
|
|
|
import Hasql.Connection qualified as Connection
|
|
|
|
localConnectionSettings :: Connection.Settings
|
|
localConnectionSettings =
|
|
Connection.settings host port user password database
|
|
where
|
|
host = "localhost"
|
|
port = 5432
|
|
user = "postgres"
|
|
password = "postgres"
|
|
database = "postgres"
|