mirror of
https://github.com/strapi/strapi.git
synced 2025-07-26 18:38:46 +00:00
11 lines
171 B
JavaScript
11 lines
171 B
JavaScript
'use strict';
|
|
|
|
// retrieve a local service
|
|
const getService = (name) => {
|
|
return strapi.plugin('content-manager').service(name);
|
|
};
|
|
|
|
module.exports = {
|
|
getService,
|
|
};
|