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