expressSandbox/PG/index.js

12 lines
182 B
JavaScript
Raw Permalink Normal View History

2024-12-09 10:00:39 +00:00
const { Pool } = require('pg')
const pool = new Pool({
user: 'postgres',
host: 'yhm.ink',
database: 'postgres',
password: '123456',
port: 54321,
})
module.exports = pool