mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 18:08:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const provider = require('./provider');
 | |
| const upload = require('./upload');
 | |
| const imageManipulation = require('./image-manipulation');
 | |
| const folder = require('./folder');
 | |
| 
 | |
| module.exports = {
 | |
|   provider,
 | |
|   upload,
 | |
|   folder,
 | |
|   'image-manipulation': imageManipulation,
 | |
| };
 | 
