mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 01:47:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			265 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			265 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| module.exports = (/* strapi, config */) => {
 | |
|   return {
 | |
|     bootstrap: () => {},
 | |
|     destroy: () => {},
 | |
|     config: {},
 | |
|     routes: [],
 | |
|     controllers: {},
 | |
|     services: () => {},
 | |
|     policies: {},
 | |
|     middlewares: {},
 | |
|     contentTypes: {},
 | |
|   };
 | |
| };
 | 
