12 lines
262 B
JavaScript
Raw Normal View History

'use strict';
const mappers = require('./mappers');
const attributes = require('./attributes');
const naming = require('./naming');
2022-08-08 23:33:39 +02:00
module.exports = (context) => ({
naming: naming(context),
attributes: attributes(context),
mappers: mappers(context),
});