feat: Add download manager

master
root 2022-02-24 15:20:21 +01:00
parent ee069e9ab8
commit 9268d90979
3 changed files with 9 additions and 3 deletions

View File

@ -50,5 +50,11 @@ PackService.getInitialList().then(() => {
httpServer.listen(PORT, () => httpServer.listen(PORT, () =>
console.log(`The server is running on port ${PORT}`) console.log(`The server is running on port ${PORT}`)
); );
console.log('initialized with ',PackService.getPackList().length, 'packs in ', Math.round(performance.now() - start), 'ms') console.log(
"initialized with ",
PackService.getPackList().length,
"packs in ",
Math.round(performance.now() - start),
"ms"
);
}); });