9 lines
No EOL
174 B
JavaScript
9 lines
No EOL
174 B
JavaScript
// database stuff
|
|
const { Pool } = require("pg");
|
|
const pool = new Pool({
|
|
user: "esmbot",
|
|
host: "localhost",
|
|
database: "esmbot",
|
|
port: 5432
|
|
});
|
|
module.exports = pool; |