This commit is contained in:
Данил 2024-02-13 23:02:10 +03:00
parent 2ea972e77d
commit 80d1e1c051
4 changed files with 25 additions and 37 deletions

8
postgresql.js Normal file
View file

@ -0,0 +1,8 @@
const pg = require("pg");
const pool = new pg.Pool({
user: "",
password: "",
host: "",
port: 5432,
database: ""
})