Skip to content

Commit

Permalink
made status page = /RevoltanatorStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandgrandRealMe committed Oct 29, 2024
1 parent 76d57f4 commit ccdb82a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ client.on("ready", async () => {
const server = createServer(app);
const port = process.env.REVOLTANATOR_PORT;

app.get('/', (req, res) => {
app.get('/RevoltanatorStatus', (req, res) => {
res.sendFile(__dirname + "/web/index.html");
});
app.get('/index.css', (req, res) => {
app.get('/RevoltanatorStatus/index.css', (req, res) => {
res.sendFile(__dirname + "/web/index.css");
});
app.get('/index.js', (req, res) => {
app.get('/RevoltanatorStatus/index.js', (req, res) => {
res.sendFile(__dirname + "/web/index.js");
});

Expand Down

0 comments on commit ccdb82a

Please sign in to comment.