mirror of
https://github.com/knex/knex.git
synced 2025-09-29 10:06:31 +00:00
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
![]() |
import Formatter from '../formatter';
|
||
|
|
||
|
const fakeClient = {
|
||
|
formatter(builder) {
|
||
|
return new Formatter(fakeClient, builder);
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default fakeClient;
|