21 lines
468 B
JavaScript
Raw Normal View History

2021-09-23 09:14:09 +02:00
'use strict';
module.exports = {
/**
* An asynchronous register function that runs before
* your application is loaded.
*
* 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 }) {},
};