add torrentio catalogs addon

This commit is contained in:
TheBeastLT
2022-04-01 13:39:18 +02:00
parent c466874324
commit b143449f77
12 changed files with 1886 additions and 0 deletions

9
catalogs/index.js Normal file
View File

@@ -0,0 +1,9 @@
const express = require('express');
const serverless = require('./serverless');
const app = express();
app.use((req, res, next) => serverless(req, res, next));
app.listen(process.env.PORT || 7000, () => {
console.log(`Started addon at: http://localhost:${process.env.PORT || 7000}`);
});