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