mirror of
https://github.com/RonanPlugins/BetterRTP.git
synced 2025-07-04 00:36:08 +00:00
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
const express = require("express");
|
|
const path = require("path");
|
|
|
|
const app = require("./routes/app.js");
|
|
const port = 3001;
|
|
|
|
app.listen(port, () => {
|
|
console.log(`BetterRTP Server online at http://localhost:${port}`);
|
|
});
|