12 lines
247 B
JavaScript
Raw Normal View History

2019-04-05 16:11:09 +02:00
'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.
*/
2019-08-12 15:35:40 +02:00
module.exports = () => {};