8 lines
203 B
JavaScript
Raw Normal View History

'use strict';
const createContentAPISchemaGenerator = require('./schema/generators/content-api');
module.exports = strapi => ({
generateContentAPISchema: createContentAPISchemaGenerator(strapi),
});