2023-06-27 09:31:05 +02:00

11 lines
171 B
JavaScript

'use strict';
// retrieve a local service
const getService = (name) => {
return strapi.plugin('content-manager').service(name);
};
module.exports = {
getService,
};