Skip to content

Commit

Permalink
Reparented B2 from B1 to main
Browse files Browse the repository at this point in the history
  • Loading branch information
xyfer17 committed Nov 1, 2023
1 parent 6fd18f6 commit a330d76
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
const express = require('express')
const app = express()
app.all('/', (req, res) => {
console.log("Just got a request!")
res.send('Yo!')
})
app.listen(process.env.PORT || 3000)
const express = require("express");
const app = express();
app.all("/", (req, res) => {
console.log("Just got a request!");
res.send("Yo!");
});

const test = () => {
console.log("new request");
};

console.log("test");

app.listen(process.env.PORT || 3000);

0 comments on commit a330d76

Please sign in to comment.