[addon] add bingeGroup to stream responses

This commit is contained in:
TheBeastLT
2021-02-05 09:37:36 +01:00
parent 6c95f0e22c
commit 154b639a11
6 changed files with 24 additions and 11 deletions

View File

@@ -8,6 +8,5 @@ app.use(express.static('static', { maxAge: '1y' }));
app.use((req, res, next) => serverless(req, res, next));
app.listen(process.env.PORT || 7000, () => {
initBestTrackers()
.then(() => console.log(`Started addon at: http://localhost:${process.env.PORT || 7000}`))
.catch(error => console.error('Failed init trackers', error));
.then(() => console.log(`Started addon at: http://localhost:${process.env.PORT || 7000}`));
});