2016-07-11 13:03:35 +02:00

14 lines
265 B
JavaScript
Executable File

'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 = cb => {
cb();
};