21 lines
490 B
TypeScript
Raw Normal View History

import '@strapi/strapi';
2022-04-12 15:42:57 +02:00
2022-04-12 15:30:09 +02:00
export default {
/**
* An asynchronous register function that runs before
* your application is initialized.
*
* This gives you an opportunity to extend code.
*/
register(/*{ strapi }*/) {},
2022-04-12 15:30:09 +02: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.
*/
bootstrap(/*{ strapi }*/) {},
2022-04-12 15:30:09 +02:00
};