mirror of
https://github.com/strapi/strapi.git
synced 2025-07-31 04:45:54 +00:00
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
'use strict';
|
|
|
|
const old = require('./old');
|
|
const schema = require('./schema');
|
|
const typeRegistry = require('./type-registry');
|
|
|
|
module.exports = {
|
|
old,
|
|
schema,
|
|
'type-registry': typeRegistry,
|
|
};
|