mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 18:08:11 +00:00 
			
		
		
		
	
		
			
	
	
		
			18 lines
		
	
	
		
			336 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			336 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | 'use strict'; | ||
|  | 
 | ||
|  | const bootstrap = require('./bootstrap'); | ||
|  | const controllers = require('./controllers'); | ||
|  | const routes = require('./routes'); | ||
|  | const policies = require('./policies'); | ||
|  | const services = require('./services'); | ||
|  | 
 | ||
|  | module.exports = () => { | ||
|  |   return { | ||
|  |     bootstrap, | ||
|  |     controllers, | ||
|  |     routes, | ||
|  |     policies, | ||
|  |     services, | ||
|  |   }; | ||
|  | }; |