2022-08-11 10:20:49 +02:00

13 lines
198 B
JavaScript

'use strict';
const sanitize = require('./sanitize');
const getService = (name) => {
return strapi.plugin('users-permissions').service(name);
};
module.exports = {
getService,
sanitize,
};