mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
add torrentio catalogs addon
This commit is contained in:
9
catalogs/index.js
Normal file
9
catalogs/index.js
Normal 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}`);
|
||||
});
|
||||
Reference in New Issue
Block a user