bootstrap.js 256 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 '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(); };