1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: add missing await for node 14

This commit is contained in:
Ivar Conradi Østhus 2020-05-02 09:00:08 +02:00
parent 295bb28b29
commit 770336e181

View File

@ -87,7 +87,9 @@ async function start(opts) {
throw err;
}
return createApp(options);
const instance = await createApp(options);
return instance;
}
module.exports = {