10 lines
132 B
JavaScript
Raw Normal View History

2021-07-08 22:07:52 +02:00
'use strict';
const getService = name => {
2021-08-19 22:27:00 +02:00
return strapi.plugin('upload').service(name);
2021-07-08 22:07:52 +02:00
};
module.exports = {
getService,
};