mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-24 05:01:26 +03:00
eslint, prettier fix
This commit is contained in:
parent
bdc4450b72
commit
2679fa20d5
10 changed files with 284 additions and 208 deletions
|
@ -1,13 +1,12 @@
|
|||
const pg = require("pg");
|
||||
const config = require("../../config/src/main.js")();
|
||||
const pg = require('pg');
|
||||
const config = require('../../config/src/main.js')();
|
||||
|
||||
const pool = new pg.Pool({
|
||||
user: config['database']['user'],
|
||||
user: config['database']['user'],
|
||||
password: config['database']['password'],
|
||||
host: config['database']['host'],
|
||||
port: config['database']['port'],
|
||||
database: config['database']['name']
|
||||
database: config['database']['name'],
|
||||
});
|
||||
|
||||
|
||||
module.exports = pool;
|
||||
module.exports = pool;
|
||||
|
|
Loading…
Add table
Reference in a new issue