mirror of
https://github.com/strapi/strapi.git
synced 2025-07-29 11:58:29 +00:00
16 lines
291 B
JavaScript
16 lines
291 B
JavaScript
'use strict';
|
|
|
|
const old = require('./old');
|
|
const generators = require('./generators');
|
|
const typeRegistry = require('./type-registry');
|
|
|
|
const builders = require('./builders');
|
|
|
|
module.exports = {
|
|
builders,
|
|
generators,
|
|
'type-registry': typeRegistry,
|
|
////////////////////
|
|
old,
|
|
};
|