mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 12:43:12 +03:00
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
const pg = require("pg");
|
|
const pool = new pg.Pool({
|
|
user: "",
|
|
password: "",
|
|
host: "",
|
|
port: 5432,
|
|
database: ""
|
|
})
|