mirror of
https://github.com/knex/knex.git
synced 2025-09-28 01:25:53 +00:00
10 lines
173 B
JavaScript
10 lines
173 B
JavaScript
const Formatter = require('../formatter');
|
|
|
|
const fakeClient = {
|
|
formatter(builder) {
|
|
return new Formatter(fakeClient, builder);
|
|
},
|
|
};
|
|
|
|
module.exports = fakeClient;
|