7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
import PG from "pg-promise";
|
|
import { default as cfg } from "../../cfg/sql.json";
|
|
|
|
//const pgp = new PG();
|
|
const sql = (new PG())(cfg);
|
|
|
|
export default sql; |