mirror of
https://github.com/strapi/strapi.git
synced 2025-07-27 19:10:01 +00:00
10 lines
129 B
JavaScript
10 lines
129 B
JavaScript
'use strict';
|
|
|
|
const getService = (name) => {
|
|
return strapi.service(`admin::${name}`);
|
|
};
|
|
|
|
module.exports = {
|
|
getService,
|
|
};
|