mirror of
https://github.com/strapi/strapi.git
synced 2025-07-07 17:12:33 +00:00
14 lines
256 B
JavaScript
Executable File
14 lines
256 B
JavaScript
Executable File
'use strict';
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
|
|
module.exports = cb => {
|
|
cb();
|
|
};
|