feat: Add download manager
parent
ee069e9ab8
commit
9268d90979
|
@ -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"
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue