mirror of
https://github.com/strapi/strapi.git
synced 2025-07-08 09:33:26 +00:00
14 lines
273 B
JavaScript
14 lines
273 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
/**
|
||
|
* An asynchronous bootstrap function that runs before
|
||
|
* your application gets lifted.
|
||
|
*
|
||
|
* This gives you an opportunity to set up your data model,
|
||
|
* run jobs, or perform some special logic.
|
||
|
*/
|
||
|
|
||
|
module.exports.bootstrap = function (cb) {
|
||
|
cb();
|
||
|
};
|