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

16 lines
250 B
JavaScript
Raw Normal View History

2021-05-31 18:28:42 +02:00
'use strict';
module.exports = (/* strapi, config */) => {
return {
bootstrap() {},
destroy() {},
2021-05-31 18:28:42 +02:00
config: {},
routes: [],
controllers: {},
services() {},
2021-05-31 18:28:42 +02:00
policies: {},
middlewares: {},
2021-08-13 15:35:19 +02:00
contentTypes: {},
2021-05-31 18:28:42 +02:00
};
};