fp/packages/strapi/src/index.js

21 lines
481 B
JavaScript
Raw Normal View History

2024-01-20 16:16:14 +00:00
'use strict';
module.exports = {
/**
* An asynchronous register function that runs before
* your application is initialized.
*
* This gives you an opportunity to extend code.
*/
2024-07-04 21:20:29 +00:00
register(/*{ strapi }*/) {},
2024-01-20 16:16:14 +00:00
/**
* An asynchronous bootstrap function that runs before
* your application gets started.
*
* This gives you an opportunity to set up your data model,
* run jobs, or perform some special logic.
*/
2024-07-04 21:20:29 +00:00
bootstrap(/*{ strapi }*/) {},
2024-01-20 16:16:14 +00:00
};