[addon] updates premiumize moch

This commit is contained in:
TheBeastLT
2021-01-18 15:44:53 +01:00
parent 5074551c41
commit b467943c5e
9 changed files with 97 additions and 29 deletions

View File

@@ -8,5 +8,6 @@ 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}`));
.then(() => console.log(`Started addon at: http://localhost:${process.env.PORT || 7000}`))
.catch(error => console.error('Failed init trackers', error));
});