mirror of
https://github.com/strapi/strapi.git
synced 2026-02-03 05:51:17 +00:00
8 lines
123 B
JavaScript
8 lines
123 B
JavaScript
'use strict';
|
|
|
|
module.exports = strapi => {
|
|
if (strapi.plugin('graphql')) {
|
|
require('./graphql')({ strapi });
|
|
}
|
|
};
|