"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.createClient = void 0;
const pg_1 = require("pg");
function createClient(params) {
const client = new pg_1.Client(params);
return client;
}
exports.createClient = createClient;