mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
10 lines
285 B
JavaScript
10 lines
285 B
JavaScript
import express from 'express';
|
|
import serverless from './serverless.js';
|
|
|
|
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}`);
|
|
});
|