mirror of
https://github.com/strapi/strapi.git
synced 2025-12-09 14:03:52 +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,
|
|
};
|