2021-09-23 09:14:09 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
/**
|
|
|
|
* An asynchronous register function that runs before
|
2021-09-23 10:40:17 +02:00
|
|
|
* your application is initialized.
|
2021-09-23 09:14:09 +02:00
|
|
|
*
|
|
|
|
* This gives you an opportunity to extend code.
|
|
|
|
*/
|
|
|
|
register({ strapi }) {},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
bootstrap({ strapi }) {},
|
2021-10-04 16:44:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An asynchronous destroy function that runs before
|
|
|
|
* your application gets shut down.
|
|
|
|
*
|
|
|
|
* This gives you an opportunity to gracefully stop services you run.
|
|
|
|
*/
|
|
|
|
destroy({ strapi }) {},
|
2021-09-23 09:14:09 +02:00
|
|
|
};
|