mirror of
https://github.com/strapi/strapi.git
synced 2025-07-20 15:36:59 +00:00
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
![]() |
/**
|
||
|
* 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')
|
||
|
};
|