mirror of
https://github.com/strapi/strapi.git
synced 2025-07-08 01:22:29 +00:00
21 lines
374 B
JavaScript
21 lines
374 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
module.exports = (/* strapi, config */) => {
|
||
|
return {
|
||
|
bootstrap: () => {
|
||
|
console.log('documentation BOOTSTRAP');
|
||
|
},
|
||
|
destroy: () => {
|
||
|
console.log('documentation DESTROY');
|
||
|
},
|
||
|
config: {},
|
||
|
routes: [],
|
||
|
controllers: {},
|
||
|
services: {},
|
||
|
policies: {},
|
||
|
middlewares: {},
|
||
|
contentTypes: [],
|
||
|
hooks: {},
|
||
|
};
|
||
|
};
|