10 lines
134 B
JavaScript
Raw Normal View History

2021-07-08 22:07:52 +02:00
'use strict';
2022-08-08 23:33:39 +02:00
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,
};