2019-09-13 20:02:41 +00:00
|
|
|
// database stuff
|
2020-07-10 17:07:24 +00:00
|
|
|
const { Pool } = require("pg");
|
|
|
|
const pool = new Pool({
|
|
|
|
user: "esmbot",
|
|
|
|
host: "localhost",
|
|
|
|
database: "esmbot",
|
|
|
|
port: 5432
|
2019-10-28 20:21:06 +00:00
|
|
|
});
|
2020-07-10 17:07:24 +00:00
|
|
|
module.exports = pool;
|