mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +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,
							 | 
						||
| 
								 | 
							
								  };
							 | 
						||
| 
								 | 
							
								};
							 |