14 lines
366 B
JavaScript
Raw Normal View History

2016-03-18 11:12:50 +01:00
'use strict';
/**
* An asynchronous bootstrap function that runs before
2017-08-17 17:20:47 +02:00
* your application gets started.
2016-03-18 11:12:50 +01:00
*
* This gives you an opportunity to set up your data model,
* run jobs, or perform some special logic.
2019-08-12 17:08:22 +02:00
*
* See more details here: https://strapi.io/documentation/3.0.0-beta.x/configurations/configurations.html#bootstrap
2016-03-18 11:12:50 +01:00
*/
module.exports = () => {};