2022-08-11 10:20:49 +02:00

12 lines
262 B
JavaScript

'use strict';
const mappers = require('./mappers');
const attributes = require('./attributes');
const naming = require('./naming');
module.exports = (context) => ({
naming: naming(context),
attributes: attributes(context),
mappers: mappers(context),
});