14 lines
256 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.
*/
module.exports = cb => {
2016-03-18 11:12:50 +01:00
cb();
};