mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-30 17:37:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			277 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			277 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| /**
 | |
|  * Index of the explorer hook explorer actions.
 | |
|  */
 | |
| 
 | |
| module.exports = {
 | |
|   count: require('./count'),
 | |
|   create: require('./create'),
 | |
|   destroy: require('./destroy'),
 | |
|   find: require('./find'),
 | |
|   findOne: require('./findOne'),
 | |
|   update: require('./update')
 | |
| };
 | 
