mirror of
https://github.com/strapi/strapi.git
synced 2025-07-05 16:12:18 +00:00
20 lines
365 B
JavaScript
20 lines
365 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: [],
|
|
};
|
|
};
|