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