2021-08-02 17:54:49 +02:00

12 lines
173 B
JavaScript

'use strict';
const { prop } = require('lodash/fp');
const getService = name => {
return prop(`admin.services.${name}`, strapi);
};
module.exports = {
getService,
};