mirror of
https://github.com/Nezumi-2711/strapi-cloud-template-blog-acf3cc33ae.git
synced 2026-09-22 05:41:51 +00:00
22 lines
504 B
JavaScript
22 lines
504 B
JavaScript
'use strict';
|
|
const bootstrap = require("./bootstrap");
|
|
|
|
module.exports = {
|
|
/**
|
|
* An asynchronous register function that runs before
|
|
* your application is initialized.
|
|
*
|
|
* 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,
|
|
};
|