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