``` js // app.js module.exports = app => new Promise(resolve => { doAsync(resolve); }); or module.exports = async function() { await doAsync(); }; ```