8 lines
111 B
JavaScript
8 lines
111 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const Pg = require('./pg');
|
||
|
|
||
|
module.exports = config => {
|
||
|
return new Pg(config.connection);
|
||
|
};
|