mirror of
https://github.com/strapi/strapi.git
synced 2025-11-14 17:19:01 +00:00
8 lines
203 B
JavaScript
8 lines
203 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
const createContentAPISchemaGenerator = require('./schema/generators/content-api');
|
||
|
|
|
||
|
|
module.exports = strapi => ({
|
||
|
|
generateContentAPISchema: createContentAPISchemaGenerator(strapi),
|
||
|
|
});
|