const Pool = require("pg").Pool; const pool = new Pool({ user: "postgres", password: "postgres", host: "localhost", database: "saoulbonmonsieur", port: 5432 }) module.exports = pool;