mirror of
https://github.com/strapi/strapi.git
synced 2025-07-18 06:24:58 +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')
|
|
};
|