mirror of
https://github.com/strapi/strapi.git
synced 2025-07-22 16:37:13 +00:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
'use strict';
|
|
|
|
const providerService = require('./provider');
|
|
const uploadService = require('./upload');
|
|
const imageManipulation = require('./image-manipulation');
|
|
|
|
module.exports = {
|
|
provider: providerService,
|
|
upload: uploadService,
|
|
'image-manipulation': imageManipulation,
|
|
};
|