Files
dd-multitool/api/index.js
koneko 7a87b284af
Some checks failed
Deploy bot / build-and-deploy (push) Failing after 2s
Readd
2025-08-26 00:28:59 +02:00

10 lines
249 B
JavaScript

import express from "express";
import { router } from "express-file-routing";
const PORT = process.env.PORT || 2000;
const app = express();
app.use("/", await router());
app.listen(PORT, () => console.log("API listening on port " + PORT + "."));