strapi/packages/plugins/graphql/strapi-server.js

12 lines
205 B
JavaScript
Raw Normal View History

2021-05-31 18:28:42 +02:00
'use strict';
const bootstrap = require('./server/bootstrap');
const services = require('./server/services');
2021-05-31 18:28:42 +02:00
module.exports = (/* strapi, config */) => {
return {
bootstrap,
services,
2021-05-31 18:28:42 +02:00
};
};