hasql/testing-utils/Hasql/TestingUtils/Constants.hs
2024-04-20 13:59:11 +03:00

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"